Update service ports to 12015 for backend and 12016 for frontend; adjust configurations and documentation accordingly

This commit is contained in:
2026-04-29 11:52:12 +02:00
parent d484721a94
commit abd61798c7
11 changed files with 59 additions and 57 deletions
+2 -2
View File
@@ -3,12 +3,12 @@
# Backend API proxy - use Docker service name instead of localhost
upstream backend {
server backend:12000;
server backend:12015;
}
# Frontend proxy - use Docker service name instead of localhost
upstream frontend {
server frontend:12001;
server frontend:12016;
}
server {