diff --git a/nginx/default.dev.conf b/nginx/default.dev.conf index aeb6db2da..94c5d7b67 100644 --- a/nginx/default.dev.conf +++ b/nginx/default.dev.conf @@ -4,17 +4,16 @@ server { location /api { proxy_set_header X-Real-RIP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - + proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://backend:4000; - proxy_redirect off; + proxy_redirect off; - proxy_cookie_path / "/; secure; HttpOnly; SameSite=lax"; + proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict"; } - + location / { include /etc/nginx/mime.types;