Merge pull request #18075 from nextcloud/backport/17696/stable17
[stable17] Remove objectstore credentials
This commit is contained in:
commit
a0a9f702b0
1 changed files with 13 additions and 2 deletions
|
@ -64,13 +64,24 @@ class SystemConfig {
|
|||
],
|
||||
'objectstore' => [
|
||||
'arguments' => [
|
||||
'password' => true,
|
||||
// Legacy Swift (https://github.com/nextcloud/server/pull/17696#discussion_r341302207)
|
||||
'options' => [
|
||||
'credentials' => [
|
||||
'key' => true,
|
||||
'secret' => true,
|
||||
]
|
||||
]
|
||||
],
|
||||
// S3
|
||||
'key' => true,
|
||||
'secret' => true,
|
||||
// Swift v2
|
||||
'username' => true,
|
||||
'password' => true,
|
||||
// Swift v3
|
||||
'user' => [
|
||||
'name' => true,
|
||||
'password' => true,
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue