From 9540a3a57654a31424041ff332b666bd49584a4c Mon Sep 17 00:00:00 2001 From: claude-bot Date: Sat, 23 May 2026 17:21:35 +0900 Subject: [PATCH] fix(nginx): update frontend upstream port 3000 -> 80 to match new image --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 691123f..6e55fe6 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -6,7 +6,7 @@ http { sendfile on; upstream mc_api { server api:8000; } - upstream mc_frontend { server frontend:3000; } + upstream mc_frontend { server frontend:80; } server { listen 80 default_server;