aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Stingl <mail@michaelstingl.com>2016-08-12 12:05:29 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-08-12 12:05:29 +0200
commit6d2b7de290d63ddc56801665314d2a1cd5592be6 (patch)
tree5b84abe7999eeca9d3d05da71c74c6cb2bf8664a
parent87275c7757da779ec86b7b9b74e250601929434b (diff)
downloadnextcloud-server-6d2b7de290d63ddc56801665314d2a1cd5592be6.tar.gz
nextcloud-server-6d2b7de290d63ddc56801665314d2a1cd5592be6.zip
[stable8.2] backport of #23728 (#25492)
* [stable8.2] backport of #23728 Sanitize more data in config report * remove 'updater.secret' – only needed in oC9+ The new updater didn't exist in 8.2, only in 9.0.
-rw-r--r--lib/private/systemconfig.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/private/systemconfig.php b/lib/private/systemconfig.php
index 94b815aebd7..96348b355e9 100644
--- a/lib/private/systemconfig.php
+++ b/lib/private/systemconfig.php
@@ -41,7 +41,19 @@ class SystemConfig {
'passwordsalt' => true,
'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,
+ ],
+ ],
];
/**