From 44e35771fafa6229f06784ef65e3fd2e241c436a Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Tue, 9 Dec 2025 15:58:03 -0500 Subject: [PATCH] attempting proxying --- web/vue-app/nginx.conf | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/web/vue-app/nginx.conf b/web/vue-app/nginx.conf index 949d262..546acbb 100644 --- a/web/vue-app/nginx.conf +++ b/web/vue-app/nginx.conf @@ -24,12 +24,15 @@ http { } location /events { - proxy_pass http://chore-app-backend:5000/events; - proxy_set_header Connection ''; - proxy_http_version 1.1; - chunked_transfer_encoding off; - proxy_buffering off; - proxy_cache off; + proxy_pass http://chore-app-backend:5000/events; + proxy_set_header Host $host; + proxy_set_header Connection ''; + proxy_http_version 1.1; + chunked_transfer_encoding off; + proxy_buffering off; + proxy_cache off; + proxy_read_timeout 36000s; + proxy_send_timeout 36000s; } location / {