From e79fc7114237d271963b103bb4c5e379dbac8ebb Mon Sep 17 00:00:00 2001 From: Milos Stojanovic Date: Mon, 27 Sep 2021 10:35:34 +0200 Subject: [PATCH] httponly cookie by default --- configuration_sample.php | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration_sample.php b/configuration_sample.php index 3aaa3fe..0a9ba5e 100644 --- a/configuration_sample.php +++ b/configuration_sample.php @@ -48,6 +48,7 @@ return [ return new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage([ "cookie_samesite" => "Lax", "cookie_secure" => null, + "cookie_httponly" => true, ], $handler); }, ],