Fix: use specific container name for API proxy to avoid collision
All checks were successful
Deploy to VPS / deploy (push) Successful in 12s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Carlos Escalante
2026-03-21 11:43:54 -06:00
parent c994f06106
commit 1257b0dd61

View File

@@ -10,7 +10,7 @@ server {
# Proxy API to backend (same docker network) # Proxy API to backend (same docker network)
location /api/ { location /api/ {
proxy_pass http://backend:8000; proxy_pass http://wealthysmart-backend-prod:8000;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;