diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-06-06 11:59:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 11:59:51 +0200 |
commit | eaab06a34053e006de2f34048e7beeb6fe931fbb (patch) | |
tree | b51f7610d9fd99abae9d3fc76944ed2a585dc74a /lib/private | |
parent | 0da38dd3056be1d96a54ccad6f09c431c0232444 (diff) | |
parent | d984fc5ca1213a0496b8cc4b67694bf74a9e418f (diff) | |
download | nextcloud-server-eaab06a34053e006de2f34048e7beeb6fe931fbb.tar.gz nextcloud-server-eaab06a34053e006de2f34048e7beeb6fe931fbb.zip |
Merge pull request #45441 from nextcloud/backport/45390/stable27
[stable27] fix: Mark more configs as sensitive
Diffstat (limited to 'lib/private')
-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 4176e8c765c..80e4ba55e39 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, |