Files
configpolicy/roles/grafana/files/grafana.nginx.conf
Dustin C. Hatch be4bbc0092 r/grafana: Fix Origin not allowed error
Grafana 8.3.5 introduced a new CSRF protection mechanism that requires
the value of the Host HTTP request header to be preserved from the
original client request.

https://github.com/grafana/grafana/issues/45117#issuecomment-1033842787
2022-07-24 10:07:45 -05:00

5 lines
88 B
Plaintext

location / {
proxy_pass http://[::1]:3000/;
proxy_set_header Host $http_host;
}