Fix: Change nginx backend proxy from hostname to localhost
All checks were successful
DevSecOps-Multibranch/pipeline/head This commit looks good

This commit is contained in:
test
2025-11-30 19:07:52 +05:30
parent a4357c95cd
commit 101cbf86d9

View File

@@ -59,7 +59,7 @@ http {
# Proxy API calls to backend
location /api {
proxy_pass http://backend:3001;
proxy_pass http://localhost:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';