mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Add default config for the new redis configuration
This commit is contained in:
parent
fa71a9a0ce
commit
b83e8683d8
1 changed files with 8 additions and 0 deletions
|
@ -343,6 +343,14 @@ return [
|
||||||
// Port number of the redis daemon.
|
// Port number of the redis daemon.
|
||||||
'redis_port' => 6379,
|
'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)
|
// session_handler (database|cache|native)
|
||||||
// Whether to use Cache to store session data or to use PHP native session storage.
|
// Whether to use Cache to store session data or to use PHP native session storage.
|
||||||
'session_handler' => 'database',
|
'session_handler' => 'database',
|
||||||
|
|
Loading…
Reference in a new issue