Skip to content

Commit 23ce7a6

Browse files
committed
add property to kibana conf for specifying public base URL
1 parent 715ceb6 commit 23ce7a6

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

jobs/kibana-platform/spec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ properties:
4040
kibana.port:
4141
description: "Kibana is served by a back end server. This controls which port to use."
4242
default: 5601
43+
kibana.public_base_url:
44+
description: "The publicly available URL that end-users access Kibana at (e.g. https://kibana-platform.com)"
4345
kibana.host:
4446
description: "This setting specifies the IP address of the back end server."
4547
default: "0.0.0.0"

jobs/kibana-platform/templates/config/kibana.conf.erb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ server.host: <%= p('kibana.host') %>
88
# specify that path here. The basePath can't end in a slash.
99
# server.basePath: ""
1010

11+
# The publicly available URL that end-users access Kibana at
12+
server.publicBaseUrl: <%= p('kibana.public_base_url') %>
13+
1114
# The Elasticsearch instance to use for all your queries.
1215
# elasticsearch.url: "http://localhost:9200"
1316
<%

0 commit comments

Comments
 (0)