From d78cb7409145d06950d2ee4fbbe6f7e0faf163f2 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Mon, 8 Dec 2025 21:10:14 -0500 Subject: [PATCH] attempting proxying --- web/vue-app/nginx.conf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/web/vue-app/nginx.conf b/web/vue-app/nginx.conf index 618aceb..3c3bf67 100644 --- a/web/vue-app/nginx.conf +++ b/web/vue-app/nginx.conf @@ -1,7 +1,7 @@ events {} http { - include /etc/nginx/mime.types; # Ensure this line is present + include /etc/nginx/mime.types; default_type application/octet-stream; server { @@ -9,11 +9,6 @@ http { server_name _; root /usr/share/nginx/html; - types { - application/javascript js mjs; - # Other types... - } - location /api/ { proxy_pass http://chore-app-backend:5000/; proxy_set_header Host $host;