Merge pull request #18075 from nextcloud/backport/17696/stable17

[stable17] Remove objectstore credentials
This commit is contained in:
Roeland Jago Douma 2019-11-25 08:38:21 +01:00 committed by GitHub
commit a0a9f702b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
],
],
],
];