Merge pull request #23728 from owncloud/sanitize-more-data-for-config-report

Sanitize more data in config report
This commit is contained in:
Joas Schilling 2016-04-04 09:47:02 +02:00
commit 1d542e4ed2
1 changed files with 13 additions and 1 deletions

View File

@ -44,7 +44,19 @@ class SystemConfig {
'secret' => true,
'updater.secret' => true,
'ldap_agent_password' => true,
'objectstore' => ['arguments' => ['password' => true]],
'proxyuserpwd' => true,
'log.condition' => [
'shared_secret' => true,
],
'license-key' => true,
'redis' => [
'password' => true,
],
'objectstore' => [
'arguments' => [
'password' => true,
],
],
];
/** @var Config */