Skip to content

Commit 3b15224

Browse files
committed
fix(ini): a stray quote was causing INI parsing to break
Error: parsing template grafana.ini.tpl (template: grafana.ini.tpl:208: bad character U+0022 '"')
1 parent eca4782 commit 3b15224

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

grafana/rootfs/usr/share/grafana/grafana.ini.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ allowed_domains = {{ default "" .GOOGLE_AUTH_ALLOWED_DOMAINS }}
205205
[auth.proxy]
206206
{{ if .AUTH_PROXY }}
207207
enabled = {{ .AUTH_PROXY }}
208-
header_name = {{ default "X-WEBAUTH-USER" .AUTH_HEADER_NAME" }}
208+
header_name = {{ default "X-WEBAUTH-USER" .AUTH_HEADER_NAME }}
209209
header_property = {{ default "username" .AUTH_HEADER_PROPERTY }}
210210
auto_sign_up = {{ default "true" .AUTH_AUTO_SIGN_UP }}
211211
{{ end }}

0 commit comments

Comments
 (0)