Merge pull request #7159 from nextcloud/enh/noid/use-nextcloud-bundle

s3-config: always use the nextcloud bundle for verification
This commit is contained in:
Simon L. 2025-11-21 09:57:16 +01:00 committed by GitHub
commit 3f65edbfbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,8 @@ if (getenv('OBJECTSTORE_S3_BUCKET')) {
// required for some non Amazon S3 implementations
'use_path_style' => strtolower($use_path) === 'true',
// required for older protocol versions
'legacy_auth' => strtolower($use_legacyauth) === 'true'
'legacy_auth' => strtolower($use_legacyauth) === 'true',
'use_nextcloud_bundle' => 1,
)
)
);