You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
688 B
20 lines
688 B
<?php |
|
|
|
return [ |
|
'driver' => env('SESSION_DRIVER', 'file'), |
|
'lifetime' => (int) env('SESSION_LIFETIME', 120), |
|
'expire_on_close' => false, |
|
'encrypt' => false, |
|
'files' => storage_path('framework/sessions'), |
|
'connection' => env('SESSION_CONNECTION'), |
|
'table' => env('SESSION_TABLE', 'sessions'), |
|
'store' => env('SESSION_STORE'), |
|
'lottery' => [2, 100], |
|
'cookie' => env('SESSION_COOKIE', 'geonet_console_session'), |
|
'path' => env('SESSION_PATH', '/'), |
|
'domain' => env('SESSION_DOMAIN'), |
|
'secure' => env('SESSION_SECURE_COOKIE', true), |
|
'http_only' => true, |
|
'same_site' => env('SESSION_SAME_SITE', 'lax'), |
|
'partitioned' => false, |
|
];
|
|
|