Add default config for the new redis configuration

This commit is contained in:
Philipp Holzer 2019-04-20 13:44:27 +02:00
parent fa71a9a0ce
commit b83e8683d8
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 8 additions and 0 deletions

View File

@ -343,6 +343,14 @@ return [
// Port number of the redis daemon.
'redis_port' => 6379,
// redis_db (Integer)
// The sub-database of redis (0 - 15 possible sub-databases)
'redis_db' => 0,
// redis_password (String)
// The authentication password for the redis database
'redis_password' => null,
// session_handler (database|cache|native)
// Whether to use Cache to store session data or to use PHP native session storage.
'session_handler' => 'database',