From d984fc5ca1213a0496b8cc4b67694bf74a9e418f Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 17 May 2024 11:45:25 +0200 Subject: [PATCH] fix: Mark more configs as sensitive Signed-off-by: Joas Schilling --- lib/private/SystemConfig.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index 4176e8c765c91..80e4ba55e3968 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,