mirror of
https://github.com/nextcloud/server.git
synced 2026-06-06 07:13:23 -04:00
Merge pull request #29082 from nextcloud/enh/add-sensitive-config-keys
Add a few sensitive config keys
This commit is contained in:
commit
e5f4d72d0b
1 changed files with 21 additions and 0 deletions
|
|
@ -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…
Reference in a new issue