add server.protocol and server.domain variables
This commit is contained in:
parent
1973172e8a
commit
1ec7c893ee
2 changed files with 4 additions and 2 deletions
|
@ -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,7 +29,7 @@ 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
|
||||
|
|
|
@ -11,9 +11,11 @@ Debian:
|
|||
data: /var/lib/grafana
|
||||
logs: /var/log/grafana
|
||||
pid_file_dir: /var/run/grafana
|
||||
protocol: http
|
||||
bind:
|
||||
address: 0.0.0.0
|
||||
port: 3000
|
||||
domain: localhost
|
||||
session:
|
||||
engine: file
|
||||
auth:
|
||||
|
|
Loading…
Reference in a new issue