diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2019-08-20 09:01:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-20 09:01:20 +0200 |
commit | 650e4f9f4c44cf55c28d0e6f7be988056cc6897c (patch) | |
tree | cf0cebe426d6b03a79d7d3c033cbbc655ff14919 | |
parent | ddec3fc416d46957247d49a82595e64ac09d95f8 (diff) | |
parent | b6c78eb9d4d7d2f761bbd8c4eecd45cfc04135e7 (diff) | |
download | nextcloud-server-650e4f9f4c44cf55c28d0e6f7be988056cc6897c.tar.gz nextcloud-server-650e4f9f4c44cf55c28d0e6f7be988056cc6897c.zip |
Merge pull request #16793 from nextcloud/bugfix/noid/filter-more-configs
Filter more configs
-rw-r--r-- | lib/private/AppConfig.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php index 8e921dbb7cf..2888cbb9dde 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -43,8 +43,21 @@ class AppConfig implements IAppConfig { /** @var array[] */ protected $sensitiveValues = [ + 'external' => [ + '/^sites$/', + ], 'spreed' => [ + '/^signaling_ticket_secret$/', '/^turn_server_secret$/', + '/^stun_servers$/', + '/^turn_servers$/', + '/^signaling_servers$/', + ], + 'theming' => [ + '/^imprintUrl$/', + '/^privacyUrl$/', + '/^slogan$/', + '/^url$/', ], 'user_ldap' => [ '/^(s..)?ldap_agent_password$/', |