Increase default session lifetime to 1 week (#2425)

This commit is contained in:
Alex Justesen
2025-11-18 12:35:17 -05:00
committed by GitHub
parent 388e7e5111
commit 99a26bc343
+1 -1
View File
@@ -32,7 +32,7 @@ return [
|
*/
'lifetime' => (int) env('SESSION_LIFETIME', 120),
'lifetime' => (int) env('SESSION_LIFETIME', 10800), # 1 week
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),