<type>(scope): <description>

[body]

[footer(s)]
This commit is contained in:
ITQ
2025-03-01 14:22:50 +03:00
parent fc63d506ca
commit e3c2fc078e
2 changed files with 12 additions and 2 deletions
+10
View File
@@ -155,6 +155,16 @@ http {
client_max_body_size 100M;
}
location /admin/grafana/ {
rewrite ^/admin/grafana/(.*) /$1 break;
proxy_pass http://grafana:3000/;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
error_page 404 = @notfound;
location @notfound {
return 444;