fix: Remove URI path from proxy_pass inside Nginx named location @backend_static

This commit is contained in:
Richard
2026-07-31 11:51:07 +02:00
parent 71542f8b88
commit 1b908b12e7
+1 -1
View File
@@ -56,7 +56,7 @@ server {
} }
location @backend_static { location @backend_static {
proxy_pass http://backend:8000/static/; proxy_pass http://backend:8000;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;