From 89aa95150cf5307d2c9afcfe40cd0f133f3d59ec Mon Sep 17 00:00:00 2001 From: alireza Date: Wed, 26 Aug 2026 11:37:37 +0330 Subject: [PATCH] fix(nginx): point statista.steelforesight.ir upstream to statista-frontend-1:3000 instead of if-react-frontend --- deploy/nginx.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/nginx.conf b/deploy/nginx.conf index 6e0e17a..d96ae12 100644 --- a/deploy/nginx.conf +++ b/deploy/nginx.conf @@ -96,7 +96,7 @@ server { proxy_pass http://statista-backend-1:8000; } - set $upstream_frontend http://if-react-frontend:80; + set $upstream_frontend http://statista-frontend-1:3000; proxy_pass $upstream_frontend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; @@ -108,7 +108,7 @@ server { } location / { - set $upstream_frontend http://if-react-frontend:80; + set $upstream_frontend http://statista-frontend-1:3000; proxy_pass $upstream_frontend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; @@ -176,7 +176,7 @@ server { proxy_pass http://statista-backend-1:8000; } - set $upstream_frontend http://if-react-frontend:80; + set $upstream_frontend http://statista-frontend-1:3000; proxy_pass $upstream_frontend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; @@ -188,7 +188,7 @@ server { } location / { - set $upstream_frontend http://if-react-frontend:80; + set $upstream_frontend http://statista-frontend-1:3000; proxy_pass $upstream_frontend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;