From a7baeb65a4b038a419b7efcec64d4bf25bc1885d Mon Sep 17 00:00:00 2001 From: Olivier Date: Sat, 13 Jun 2026 19:13:03 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20nginx=20upstream=20backend=20=E2=86=92?= =?UTF-8?q?=20crowdlending-backend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 760c123..51d4936 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -14,7 +14,7 @@ server { # API proxy to the backend service (docker-compose internal DNS) location /api/ { - proxy_pass http://backend:4000/api/; + proxy_pass http://crowdlending-backend:4000/api/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;