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
grafana
|
@ -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,7 +29,7 @@ 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
|
||||||
|
|
|
@ -11,9 +11,11 @@ Debian:
|
||||||
data: /var/lib/grafana
|
data: /var/lib/grafana
|
||||||
logs: /var/log/grafana
|
logs: /var/log/grafana
|
||||||
pid_file_dir: /var/run/grafana
|
pid_file_dir: /var/run/grafana
|
||||||
|
protocol: http
|
||||||
bind:
|
bind:
|
||||||
address: 0.0.0.0
|
address: 0.0.0.0
|
||||||
port: 3000
|
port: 3000
|
||||||
|
domain: localhost
|
||||||
session:
|
session:
|
||||||
engine: file
|
engine: file
|
||||||
auth:
|
auth:
|
||||||
|
|
Loading…
Add table
Reference in a new issue