Sanitize more data in config report

This sanitizes the following keys as well:

- `proxyuserpwd`
- `shared_secret` of `log.condition`
- `license-key`
- `password` of `redis`
This commit is contained in:
Lukas Reschke 2016-04-01 13:03:34 +02:00
parent e7ac5dccb6
commit a5f2f22c12
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 */