1
0
Fork 0

Merge pull request #36 from beuss/master

server: add support for domain, protocol & root_url
This commit is contained in:
Filip Pytloun 2018-12-12 12:11:05 +01:00 committed by GitHub
commit 72c889639c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -20,7 +20,7 @@ logs = {{ server.path.logs }}
#################################### Server ####################################
[server]
# Protocol (http or https)
;protocol = http
protocol = {{ server.protocol }}
# The ip address to bind to, empty will bind to all interfaces
http_addr = {{ server.bind.address }}
@ -29,14 +29,14 @@ http_addr = {{ server.bind.address }}
http_port = {{ server.bind.port }}
# 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
# Prevents DNS rebinding attacks
;enforce_domain = false
# The full public facing url
;root_url = %(protocol)s://%(domain)s:%(http_port)s/
root_url = {{ server.root_url }}
# Log web requests
;router_logging = false

View File

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