Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-07-21 13:18:42 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-07-22 13:52:13 +0300
commit8b17f317ee03b41dbdc27a8d40af12d10a430c12 (patch)
treea7159ece70ed4ae3acb63e3063c6d1d2a87a542f /config
parentcc34255303d9f5c3c28c2004f888e9c9cdc180e5 (diff)
Properly support RedisCluster
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 6b4d72186ff..4fcfc5fb6fd 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1233,7 +1233,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',
@@ -1277,7 +1277,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',