From 28d1cf0bf05afd4e3b7d6dc0b3037950b2a8a57e Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 6 Mar 2026 17:47:55 +0000 Subject: [PATCH] fix: [30388f42] Repariere Nginx Upstream Name (b2b-assistant) - Korrigiert den Hostnamen in nginx-proxy.conf von b2b-app (veraltet) auf b2b-assistant (aktueller Docker Service Name). - Behebt den [emerg] host not found Fehler und den Restart-Loop des Gateways. --- nginx-proxy.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-proxy.conf b/nginx-proxy.conf index ab7f32ec..66ecf1d7 100644 --- a/nginx-proxy.conf +++ b/nginx-proxy.conf @@ -36,7 +36,7 @@ http { location /b2b/ { # Der Trailing Slash am Ende ist wichtig! - proxy_pass http://b2b-app:3002/; + proxy_pass http://b2b-assistant:3002/; proxy_set_header Host $host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";