From 101cbf86d9cd5072d9248399fb598cd0cb5dfb96 Mon Sep 17 00:00:00 2001 From: test Date: Sun, 30 Nov 2025 19:07:52 +0530 Subject: [PATCH] Fix: Change nginx backend proxy from hostname to localhost --- frontend/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 8a5ea8e..9fe6f88 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -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';