summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-10-30 20:01:42 +0100
committerGitHub <noreply@github.com>2017-10-30 20:01:42 +0100
commit5672f14fd1218945bd6d585d231554a8481525ae (patch)
tree17966398c2c94ff8d4f63c72a2d32120e551f7d5 /lib
parentfcb9c034fa6c872a908dc6efd11056b0fae69f2c (diff)
parentbde78decc2604c4e5013b8231c7b767866429c31 (diff)
downloadnextcloud-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.php8
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' => [