From b83e8683d8c7b2579aad28948546a3adeece81d4 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Sat, 20 Apr 2019 13:44:27 +0200 Subject: [PATCH] Add default config for the new redis configuration --- config/defaults.config.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/defaults.config.php b/config/defaults.config.php index 5540ddbb44..b4471af25c 100644 --- a/config/defaults.config.php +++ b/config/defaults.config.php @@ -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',