diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-05-22 13:32:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 13:32:24 +0200 |
commit | 221883fa5bbe68587578b76f2bb7b20404c9b39c (patch) | |
tree | 48e63e0c5544a274b9ffde2ee31a2e462dd52c0a | |
parent | 576e249476054f49c51368694b46791fdffad89d (diff) | |
parent | 03f38c9b065537a4dcc0bdafae65a6c01498ae70 (diff) | |
download | nextcloud-server-221883fa5bbe68587578b76f2bb7b20404c9b39c.tar.gz nextcloud-server-221883fa5bbe68587578b76f2bb7b20404c9b39c.zip |
Merge pull request #45390 from nextcloud/bugfix/noid/mark-more-configs-as-sensitive
-rw-r--r-- | lib/private/SystemConfig.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index b1d120574c3..7aeba1fcec5 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -42,6 +42,7 @@ class SystemConfig { 'dbhost' => true, 'dbpassword' => true, 'dbuser' => true, + 'dbreplica' => true, 'activity_dbname' => true, 'activity_dbhost' => true, 'activity_dbpassword' => true, @@ -57,6 +58,7 @@ class SystemConfig { 'updater.server.url' => true, 'trusted_proxies' => true, 'preview_imaginary_url' => true, + 'preview_imaginary_key' => true, 'proxyuserpwd' => true, 'sentry.dsn' => true, 'sentry.public-dsn' => true, |