fix(proxy): relative redirects so Traefik doesn't leak :8080

This commit is contained in:
Developer
2026-07-31 16:54:41 +07:00
parent ce899e9c56
commit 2addfb6492
+4
View File
@@ -15,6 +15,10 @@ http {
listen 8080;
server_name _;
# Use relative redirects (Location: /dashboard/) instead of absolute
# URLs that leak the internal listen port (8080) through Traefik.
absolute_redirect off;
gzip on;
gzip_types text/plain text/css application/json application/javascript application/wasm image/svg+xml;
gzip_min_length 256;