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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
21 additions and
0 deletions
-
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 */ |
|
|
|
|