attempting proxying

This commit is contained in:
2025-12-08 21:10:14 -05:00
parent 2ab8665a6b
commit d78cb74091

View File

@@ -1,7 +1,7 @@
events {} events {}
http { http {
include /etc/nginx/mime.types; # Ensure this line is present include /etc/nginx/mime.types;
default_type application/octet-stream; default_type application/octet-stream;
server { server {
@@ -9,11 +9,6 @@ http {
server_name _; server_name _;
root /usr/share/nginx/html; root /usr/share/nginx/html;
types {
application/javascript js mjs;
# Other types...
}
location /api/ { location /api/ {
proxy_pass http://chore-app-backend:5000/; proxy_pass http://chore-app-backend:5000/;
proxy_set_header Host $host; proxy_set_header Host $host;