diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-10-30 20:01:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-30 20:01:42 +0100 |
commit | 5672f14fd1218945bd6d585d231554a8481525ae (patch) | |
tree | 17966398c2c94ff8d4f63c72a2d32120e551f7d5 /lib | |
parent | fcb9c034fa6c872a908dc6efd11056b0fae69f2c (diff) | |
parent | bde78decc2604c4e5013b8231c7b767866429c31 (diff) | |
download | nextcloud-server-5672f14fd1218945bd6d585d231554a8481525ae.tar.gz nextcloud-server-5672f14fd1218945bd6d585d231554a8481525ae.zip |
Merge pull request #7004 from Fiech/master
Extended list of sensitive configuration values
Diffstat (limited to 'lib')
-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' => [ |