1
0
Fork 0

server: add support for domain, protocol & root_url

This commit is contained in:
Sébastien Le Ray 2018-12-11 16:34:16 +01:00
parent a4dfe3a0d7
commit f155f3c31a
2 changed files with 6 additions and 3 deletions

View File

@ -20,7 +20,7 @@ logs = {{ server.path.logs }}
#################################### Server #################################### #################################### Server ####################################
[server] [server]
# Protocol (http or https) # Protocol (http or https)
;protocol = http protocol = {{ server.protocol }}
# The ip address to bind to, empty will bind to all interfaces # The ip address to bind to, empty will bind to all interfaces
http_addr = {{ server.bind.address }} http_addr = {{ server.bind.address }}
@ -29,14 +29,14 @@ http_addr = {{ server.bind.address }}
http_port = {{ server.bind.port }} http_port = {{ server.bind.port }}
# The public facing domain name used to access grafana from a browser # The public facing domain name used to access grafana from a browser
;domain = localhost domain = {{ server.domain }}
# Redirect to correct domain if host header does not match domain # Redirect to correct domain if host header does not match domain
# Prevents DNS rebinding attacks # Prevents DNS rebinding attacks
;enforce_domain = false ;enforce_domain = false
# The full public facing url # The full public facing url
;root_url = %(protocol)s://%(domain)s:%(http_port)s/ root_url = {{ server.root_url }}
# Log web requests # Log web requests
;router_logging = false ;router_logging = false

View File

@ -6,6 +6,9 @@ Debian:
service: grafana-server service: grafana-server
user: grafana user: grafana
group: grafana group: grafana
protocol: http
domain: localhost
root_url: '%(protocol)s://%(domain)s:%(http_port)s/'
path: path:
home: /usr/share/grafana home: /usr/share/grafana
data: /var/lib/grafana data: /var/lib/grafana