diff --git a/nginx-host.conf b/nginx-host.conf index 1cfee8d..5ea07f9 100644 --- a/nginx-host.conf +++ b/nginx-host.conf @@ -88,7 +88,7 @@ server { # === Backend API - Stripe Webhooks (specific route, no trailing slash) === location = /api/webhooks/stripe { - proxy_pass http://127.0.0.1:3001/api/webhooks/stripe; + proxy_pass http://127.0.0.1:3801/api/webhooks/stripe; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; @@ -106,7 +106,7 @@ server { # === Backend API - All other API routes === location /api/ { - proxy_pass http://127.0.0.1:3001/; + proxy_pass http://127.0.0.1:3801/; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;