diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.default.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.default.php b/config/config.default.php index 659a26b7..079b7e63 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -132,6 +132,15 @@ return [ '4XL' => '4XL' ], + // Session config + 'session' => [ + // Supported: pdo or native + 'driver' => env('SESSION_DRIVER', 'pdo'), + + // Cookie name + 'name' => 'session', + ], + // IP addresses of reverse proxies that are trusted, can be an array or a comma separated list 'trusted_proxies' => env('TRUSTED_PROXIES', ['127.0.0.0/8', '::ffff:127.0.0.0/8', '::1/128']), ]; |