phpvms/config/session.php
Arthur Parienté e8f36a66d1
Move SESSION_CONNECTION to .env (#1705)
Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com>
2023-12-04 09:41:17 -06:00

33 lines
1.2 KiB
PHP
Executable File

<?php
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be used on
| requests. By default, we will use the lightweight native driver but
| you may specify any of the other wonderful drivers provided here.
|
| Supported: "file", "cookie", "database", "apc",
| "memcached", "redis", "array"
|
*/
'driver' => env('SESSION_DRIVER', 'file'),
'lifetime' => env('SESSION_LIFETIME', 120),
'expire_on_close' => false,
'encrypt' => false,
'files' => storage_path('framework/sessions'),
'connection' => env('SESSION_CONNECTION', 'mysql'),
'table' => 'sessions',
'store' => null,
'lottery' => [1, 100],
'cookie' => 'phpvms_session',
'path' => '/',
'domain' => env('SESSION_DOMAIN', null),
'secure' => env('SESSION_SECURE_COOKIE', null),
'http_only' => true,
];