From 3656d61c4d23547b5b750a1207e80e047d4d8e1b Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Wed, 6 Nov 2024 13:36:53 -0500 Subject: [PATCH] Add services.yml to set session cookie length * 10 --- web/sites/default/services.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 web/sites/default/services.yml diff --git a/web/sites/default/services.yml b/web/sites/default/services.yml new file mode 100644 index 0000000..6aeec13 --- /dev/null +++ b/web/sites/default/services.yml @@ -0,0 +1,7 @@ +parameters: + session.storage.options: + # Set session cookie lifetime (in seconds), i.e. the time from the session + # is created to the cookie expires, i.e. when the browser is expected to + # discard the cookie. The value 0 means "until the browser is closed". + # @default 2000000 + cookie_lifetime: 20000000