Increase session lifetime to one month (#13505)

Because we know authenticate cookies, remember me is tied to the session lifetime now in addition to the cookie lifetime. Increase the lifetime to one month instead of two hours.
This commit is contained in:
Tony Murray
2021-11-12 09:32:58 -06:00
committed by GitHub
parent 19217e8dfc
commit 8ccf72ffdd

View File

@@ -39,7 +39,7 @@ return [
|
*/
'lifetime' => env('SESSION_LIFETIME', 120),
'lifetime' => env('SESSION_LIFETIME', 43800),
'expire_on_close' => false,