Disable Client-Side Monitoring on AWS storage
The S3 client enables this by default and then tries to read `.aws/config`. This causes `open_basedir` restriction related error for some setups. So this patch disables the CSM because it's most likely unused anyway. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
8b2a76216d
commit
60a3bf8572
|
@ -47,7 +47,7 @@ trait S3ConnectionTrait {
|
||||||
|
|
||||||
/** @var int */
|
/** @var int */
|
||||||
protected $timeout;
|
protected $timeout;
|
||||||
|
|
||||||
/** @var int */
|
/** @var int */
|
||||||
protected $uploadPartSize;
|
protected $uploadPartSize;
|
||||||
|
|
||||||
|
@ -99,7 +99,8 @@ trait S3ConnectionTrait {
|
||||||
'endpoint' => $base_url,
|
'endpoint' => $base_url,
|
||||||
'region' => $this->params['region'],
|
'region' => $this->params['region'],
|
||||||
'use_path_style_endpoint' => isset($this->params['use_path_style']) ? $this->params['use_path_style'] : false,
|
'use_path_style_endpoint' => isset($this->params['use_path_style']) ? $this->params['use_path_style'] : false,
|
||||||
'signature_provider' => \Aws\or_chain([self::class, 'legacySignatureProvider'], ClientResolver::_default_signature_provider())
|
'signature_provider' => \Aws\or_chain([self::class, 'legacySignatureProvider'], ClientResolver::_default_signature_provider()),
|
||||||
|
'csm' => false,
|
||||||
];
|
];
|
||||||
if (isset($this->params['proxy'])) {
|
if (isset($this->params['proxy'])) {
|
||||||
$options['request.options'] = ['proxy' => $this->params['proxy']];
|
$options['request.options'] = ['proxy' => $this->params['proxy']];
|
||||||
|
|
Loading…
Reference in New Issue