fix(nginx): update frontend upstream port 3000 -> 80 to match new image

This commit is contained in:
2026-05-23 17:21:35 +09:00
parent 9489bdb362
commit 9540a3a576

View File

@@ -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;