|
|
@@ -2,12 +2,18 @@ app_name = Grafana
|
|
|
app_mode = production
|
|
|
|
|
|
[server]
|
|
|
+; protocol (http or https)
|
|
|
protocol = http
|
|
|
-domain = localhost
|
|
|
-root_url = %(protocol)s://%(domain)s:%(http_port)s/
|
|
|
+; the ip address to bind to, empty will bind to all interfaces
|
|
|
http_addr =
|
|
|
+; the http port to use
|
|
|
http_port = 3000
|
|
|
+; The public facing domain name used to access grafana from a browser
|
|
|
+domain = localhost
|
|
|
+; the full public facing url
|
|
|
+root_url = %(protocol)s://%(domain)s:%(http_port)s/
|
|
|
router_logging = false
|
|
|
+; the path relative to the binary where the static (html/js/css) files are placed
|
|
|
static_root_path = public
|
|
|
enable_gzip = false
|
|
|
|