From 0192c9b3e5a15caf4baa45c6e0e5268b908da31a Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 31 Oct 2025 12:36:49 +0100 Subject: [PATCH] Fix nginx backend proxy port from 3001 to 3801 Backend container is exposed on host port 3801, not 3001. This was preventing webhooks and API calls from reaching the backend. --- nginx-host.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;