From fc4c53ac29f61444b18b23a33a851efb6acfe292 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Tue, 9 Dec 2025 10:10:51 -0500 Subject: [PATCH] attempting proxying --- web/vue-app/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/vue-app/nginx.conf b/web/vue-app/nginx.conf index 7edc346..c1d615c 100644 --- a/web/vue-app/nginx.conf +++ b/web/vue-app/nginx.conf @@ -16,7 +16,7 @@ http { ssl_ciphers HIGH:!aNULL:!MD5; location /api/ { - proxy_pass http://backend:5000/; + proxy_pass http://chore-app-backend:5000/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; @@ -24,7 +24,7 @@ http { } location /events/ { - proxy_pass http://backend:5000/events; + proxy_pass http://chore-app-backend:5000/events; proxy_set_header Connection ''; proxy_http_version 1.1; chunked_transfer_encoding off;