diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2024-01-17 16:53:34 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2024-01-23 08:17:26 +0100 |
commit | 5dd7513390be054f1e782b92c01dcb9f591d73dd (patch) | |
tree | 0ba9534ba096667815f4be67556f12392eb77795 /config | |
parent | 3154e09e43b0d03631e489f3af5f093c41d9c29f (diff) | |
download | nextcloud-server-5dd7513390be054f1e782b92c01dcb9f591d73dd.tar.gz nextcloud-server-5dd7513390be054f1e782b92c01dcb9f591d73dd.zip |
fix(db): Fix replica password example config
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
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 ae37c3aec92..24bed544692 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -155,8 +155,8 @@ $CONFIG = [ * Specify read only replicas to be used by Nextcloud when querying the database */ 'dbreplica' => [ - ['user' => 'replica1', 'password', 'host' => '', 'dbname' => ''], - ['user' => 'replica1', 'password', 'host' => '', 'dbname' => ''], + ['user' => 'nextcloud', 'password' => 'password1', 'host' => 'replica1', 'dbname' => ''], + ['user' => 'nextcloud', 'password' => 'password2', 'host' => 'replica2', 'dbname' => ''], ], /** |