Hi, Team
After upgrading from 2.26.0 to 2.27.0, the Grafana is upgraded to 8.3.5, all dashboards refuse to work.
It complains:
origin not allowed
On almost every page.
Could someone help to figure out this? Thanks
I searched google and find something maybe help: Unable to Create/Save Dashboard after v8.3.5 Update · Issue #45117 · grafana/grafana · GitHub
But when I checked the Nginx config, I find the mentioned workaround is already there.
# Grafana
rewrite ^/$ $scheme://$http_host/graph/;
rewrite ^/graph$ /graph/;
location /graph {
proxy_cookie_path / "/;";
proxy_pass http://127.0.0.1:3000;
rewrite ^/graph/(.*) /$1 break;
proxy_read_timeout 600;
proxy_http_version 1.1;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $http_host;
}