grafana: fix reverse proxy

Can’t get it to bind to IPv6 so use v4 explicitly.
This commit is contained in:
Timotej Lazar 2025-05-07 14:07:11 +02:00
parent 39fec47f87
commit 7f28f3a366

View file

@ -7,7 +7,9 @@ server {
ssl_certificate_key /etc/letsencrypt/live/{{ dns_name }}/privkey.pem; ssl_certificate_key /etc/letsencrypt/live/{{ dns_name }}/privkey.pem;
location / { location / {
proxy_pass http://localhost:3000; proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_max_temp_file_size 0;
} }
} }