mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #52432 from nextcloud/backport/52424/stable30
[stable30] fix(config): Censor more app configs in system report
This commit is contained in:
commit
f3f28690a3
1 changed files with 9 additions and 3 deletions
|
|
@ -1440,6 +1440,9 @@ class AppConfig implements IAppConfig {
|
|||
'globalsiteselector' => [
|
||||
'/^gss\.jwt\.key$/',
|
||||
],
|
||||
'gpgmailer' => [
|
||||
'/^GpgServerKey$/',
|
||||
],
|
||||
'integration_discourse' => [
|
||||
'/^private_key$/',
|
||||
'/^public_key$/',
|
||||
|
|
@ -1494,6 +1497,9 @@ class AppConfig implements IAppConfig {
|
|||
'/^client_secret$/',
|
||||
'/^oauth_instance_url$/',
|
||||
],
|
||||
'maps' => [
|
||||
'/^mapboxAPIKEY$/',
|
||||
],
|
||||
'notify_push' => [
|
||||
'/^cookie$/',
|
||||
],
|
||||
|
|
@ -1531,12 +1537,12 @@ class AppConfig implements IAppConfig {
|
|||
'/^slogan$/',
|
||||
'/^url$/',
|
||||
],
|
||||
'user_ldap' => [
|
||||
'/^(s..)?ldap_agent_password$/',
|
||||
],
|
||||
'twofactor_gateway' => [
|
||||
'/^.*token$/',
|
||||
],
|
||||
'user_ldap' => [
|
||||
'/^(s..)?ldap_agent_password$/',
|
||||
],
|
||||
'user_saml' => [
|
||||
'/^idp-x509cert$/',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue