copy from official addon

This commit is contained in:
john
2026-02-19 21:26:09 +01:00
commit cde15848b4
49 changed files with 1496 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 1337 default_server;
include /etc/nginx/includes/server_params.conf;
include /etc/nginx/includes/proxy_params.conf;
location / {
allow 127.0.0.1;
allow 172.30.32.2;
deny all;
proxy_set_header X-WEBAUTH-USER %%grafana_user%%;
proxy_pass http://backend;
}
}