Merge "kibana: add configuration option for base url"

This commit is contained in:
Zuul 2022-05-26 16:27:19 +00:00 committed by Gerrit Code Review
commit 82e542eff1
2 changed files with 9 additions and 0 deletions

View File

@ -36,3 +36,6 @@ kibana_elastic_endpoints:
# kibana_reporting_encryption_key: ""
# The key used to encrypt kibana session cookies
# kibana_security_encryption_key: ""
# The URL which users access Kibana from
# kibana_base_url: ""

View File

@ -18,6 +18,12 @@ server.host: {{ kibana_interface }}
# default to `true` starting in Kibana 7.0.
#server.rewriteBasePath: false
# Specifies the public URL at which Kibana is available for end users. If
# `server.basePath` is configured this URL should end with the same basePath.
{% if kibana_base_url is defined %}
server.publicBaseUrl: "{{ kibana_base_url }}"
{% endif %}
# The maximum payload size in bytes for incoming server requests.
#server.maxPayloadBytes: 1048576