Skip to content

Commit

Permalink
Merge pull request #29085 from nextcloud/backport/29082/stable20
Browse files Browse the repository at this point in the history
[stable20] Add a few sensitive config keys
  • Loading branch information
MichaIng authored Oct 6, 2021
2 parents 79a032c + 0690c60 commit 02955c8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lib/private/SystemConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 02955c8

Please sign in to comment.