mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
consider some config keys under 'objectstore_multibucket' as sensitive
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
This commit is contained in:
parent
44c7f55716
commit
1bf46f6610
1 changed files with 21 additions and 0 deletions
|
|
@ -84,6 +84,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