From 22bdf6ab9e06690d9429be77389e048ec1f08108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 4 Dec 2024 10:22:59 +0100 Subject: [PATCH] fix: relax cookie security for staging environment --- config/packages/framework.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml index 28095da..28dc777 100644 --- a/config/packages/framework.yaml +++ b/config/packages/framework.yaml @@ -10,7 +10,8 @@ framework: session: handler_id: null cookie_secure: auto - cookie_samesite: lax + # cookie_samesite: lax + cookie_samesite: none # this is to make login work in staging environment. to be removed when going live! #esi: true #fragments: true