Browse Source

Merge pull request #29082 from nextcloud/enh/add-sensitive-config-keys

Add a few sensitive config keys
pull/29084/head
Vincent Petry 4 years ago
committed by GitHub
parent
commit
e5f4d72d0b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      lib/private/SystemConfig.php

21
lib/private/SystemConfig.php

@ -83,6 +83,27 @@ class SystemConfig {
],
],
],
'objectstore_multibucket' => [
'arguments' => [
'options' => [
'credentials' => [
'key' => true,
'secret' => true,
]
],
// S3
'key' => true,
'secret' => true,
// Swift v2
'username' => true,
'password' => true,
// Swift v3
'user' => [
'name' => true,
'password' => true,
],
],
],
];
/** @var Config */

Loading…
Cancel
Save