mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #29086 from nextcloud/backport/29082/stable22
[stable22] Add a few sensitive config keys
This commit is contained in:
commit
3ff8e940d1
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