mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Merge pull request #56154 from nextcloud/backport/56096/stable32
[stable32] fix(s3): expose request_checksum_calculation and response_checksum_va…
This commit is contained in:
commit
46f144d21c
1 changed files with 8 additions and 0 deletions
|
|
@ -119,6 +119,14 @@ trait S3ConnectionTrait {
|
|||
$options['endpoint'] = $base_url;
|
||||
}
|
||||
|
||||
if (isset($this->params['request_checksum_calculation'])) {
|
||||
$options['request_checksum_calculation'] = $this->params['request_checksum_calculation'];
|
||||
}
|
||||
|
||||
if (isset($this->params['response_checksum_validation'])) {
|
||||
$options['response_checksum_validation'] = $this->params['response_checksum_validation'];
|
||||
}
|
||||
|
||||
if ($this->getProxy()) {
|
||||
$options['http']['proxy'] = $this->getProxy();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue