diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a6911368..2aa74106 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -3,6 +3,7 @@ server { listen ${PORT}; listen [::]:${PORT}; server_name localhost; + # frontend location / { proxy_pass ${FRONTEND}; @@ -12,15 +13,12 @@ server { location /backend/ { rewrite /backend/(.*) /$1 break; proxy_pass ${BACKEND}; - proxy_set_header content-type application/json; - # proxy_set_header Host $host; } # graphql API composition location /wundergraph/graphql { rewrite /wundergraph/graphql /graphql break; proxy_pass ${WUNDERGRAPH}; - # proxy_set_header Host ${WUNDERGRAPH}; } }