From bd94da430c90eba71b4e8f800bd67ed0ced73a5c Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Sat, 7 Jun 2025 21:22:19 +0200 Subject: [PATCH] Update proxy_pass ports in nginx configuration --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 9312eb6..66245cf 100644 --- a/nginx.conf +++ b/nginx.conf @@ -14,7 +14,7 @@ http { listen 80; location / { - proxy_pass http://main-website:3000; + proxy_pass http://main-website:25600; 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:8080/; + proxy_pass http://ld1:25601/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;