From dfa33e63cbad81ffadab4322730e4512c0ea7ac2 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Wed, 12 Apr 2023 17:29:33 -0700 Subject: [PATCH] remove secure cookie from default install --- nginx/default.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx/default.conf b/nginx/default.conf index f52edda3f..4c0e2434d 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -11,7 +11,8 @@ server { proxy_pass http://backend:4000; proxy_redirect off; - proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict"; + # proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict"; + proxy_cookie_path / "/; HttpOnly; SameSite=strict"; } location / {