From f6024c743fa159967494be53cdebe0a9daddb970 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Sat, 7 Jun 2025 21:48:52 +0200 Subject: [PATCH] Update proxy_pass ports in nginx.conf --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 66245cf..9ea08af 100644 --- a/nginx.conf +++ b/nginx.conf @@ -14,7 +14,7 @@ http { listen 80; location / { - proxy_pass http://main-website:25600; + proxy_pass http://main-website:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; @@ -22,7 +22,7 @@ http { } location /lawfirm-demos/demo1/ { - proxy_pass http://ld1:25601/; + proxy_pass http://ld1:3000/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;