diff options
author | Johannes Schlichenmaier <johannes@schlichenmaier.info> | 2017-10-29 23:37:29 +0100 |
---|---|---|
committer | Johannes Schlichenmaier <johannes@schlichenmaier.info> | 2017-10-29 23:46:59 +0100 |
commit | bde78decc2604c4e5013b8231c7b767866429c31 (patch) | |
tree | 0c3d98c465d6784435b11c83a1f6c0f892b39986 /lib/private/SystemConfig.php | |
parent | 267991b154b4b0032b1554de681fa2041f975a94 (diff) | |
download | nextcloud-server-bde78decc2604c4e5013b8231c7b767866429c31.tar.gz nextcloud-server-bde78decc2604c4e5013b8231c7b767866429c31.zip |
Extended list of sensitive configuration values
In accordance with the issuetemplate app issue:
https://github.com/nextcloud/issuetemplate/issues/27
Signed-off-by: Johannes Schlichenmaier <johannes@schlichenmaier.info>
Diffstat (limited to 'lib/private/SystemConfig.php')
-rw-r--r-- | lib/private/SystemConfig.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index 3610486140d..91afbeb8967 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -37,22 +37,30 @@ class SystemConfig { /** @var array */ protected $sensitiveValues = [ + 'instanceid' => true, + 'trusted_domains' => true, + 'datadirectory' => true, + 'overwrite.cli.url' => true, 'dbname' => true, + 'dbhost' => true, 'dbpassword' => true, 'dbuser' => true, 'mail_from_address' => true, 'mail_domain' => true, + 'mail_smtphost' => true, 'mail_smtpname' => true, 'mail_smtppassword' => true, 'passwordsalt' => true, 'secret' => true, 'updater.secret' => true, + 'trusted_proxies' => true, 'proxyuserpwd' => true, 'log.condition' => [ 'shared_secret' => true, ], 'license-key' => true, 'redis' => [ + 'host' => true, 'password' => true, ], 'objectstore' => [ |