diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-07-21 12:18:42 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-07-22 07:42:26 +0200 |
commit | 6e00fe8c26c8d1cd68497911371c3b4b785d903c (patch) | |
tree | f58216f080936a6991e671e022995f80113096e6 /config | |
parent | 66c1e05452e6f5787cb2df054e59428aa417964a (diff) | |
download | nextcloud-server-6e00fe8c26c8d1cd68497911371c3b4b785d903c.tar.gz nextcloud-server-6e00fe8c26c8d1cd68497911371c3b4b785d903c.zip |
Properly support RedisCluster
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 6d6f98db602..ca5dd50b7ee 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1234,7 +1234,7 @@ $CONFIG = [ 'user' => '', // Optional, if not defined no password will be used. 'password' => '', // Optional, if not defined no password will be used. 'dbindex' => 0, // Optional, if undefined SELECT will not run and will use Redis Server's default DB Index. - // If redis is encrypted, provide certificates + // If redis in-transit encryption is enabled, provide certificates // SSL context https://www.php.net/manual/en/context.ssl.php 'ssl_context' => [ 'local_cert' => '/certs/redis.crt', @@ -1278,7 +1278,7 @@ $CONFIG = [ 'failover_mode' => \RedisCluster::FAILOVER_ERROR, 'user' => '', // Optional, if not defined no password will be used. 'password' => '', // Optional, if not defined no password will be used. - // If redis is encrypted, provide certificates + // If redis in-transit encryption is enabled, provide certificates // SSL context https://www.php.net/manual/en/context.ssl.php 'ssl_context' => [ 'local_cert' => '/certs/redis.crt', |