Skip to content

Commit

Permalink
Merge pull request #18075 from nextcloud/backport/17696/stable17
Browse files Browse the repository at this point in the history
[stable17] Remove objectstore credentials
  • Loading branch information
rullzer authored Nov 25, 2019
2 parents 66ddb89 + 956c459 commit a0a9f70
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions lib/private/SystemConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
],
],
],
];
Expand Down

0 comments on commit a0a9f70

Please sign in to comment.