mirror of
https://github.com/nextcloud/docker.git
synced 2025-07-27 09:08:04 +02:00
Merge 0f899fe772
into 29d959acfd
This commit is contained in:
commit
5a3a4ea5e4
2 changed files with 15 additions and 1 deletions
|
@ -19,7 +19,14 @@ if (getenv('OBJECTSTORE_S3_BUCKET')) {
|
|||
// required for some non Amazon S3 implementations
|
||||
'use_path_style' => $use_path == true && strtolower($use_path) !== 'false',
|
||||
// required for older protocol versions
|
||||
'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false'
|
||||
'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false',
|
||||
'concurrency' => getenv('OBJECTSTORE_S3_CONCURRENCY') ?: '',
|
||||
'proxy' => getenv('OBJECTSTORE_S3_PROXY') ?: '',
|
||||
'timeout' => getenv('OBJECTSTORE_S3_TIMEOUT') ?: '',
|
||||
'uploadPartSize' => getenv('OBJECTSTORE_S3_UPLOADPARTSIZE') ?:'',
|
||||
'putSizeLimit' => getenv('OBJECTSTORE_S3_PUTSIZELIMIT') ?: '',
|
||||
'version' => getenv('OBJECTSTORE_S3_VERSION') ?: '',
|
||||
'verify_bucket_exists' => getenv('OBJECTSTORE_S3_VERIFY_BUCKET_EXISTS') ?: ''
|
||||
)
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue