diff --git a/io-orbit/src/factory.rs b/io-orbit/src/factory.rs index 70f589a8a..5fc770de6 100644 --- a/io-orbit/src/factory.rs +++ b/io-orbit/src/factory.rs @@ -84,6 +84,7 @@ async fn build_s3_compatible( .with_access_key_id(&s3_cfg.access_key_id) .with_secret_access_key(&s3_cfg.secret_access_key) .with_endpoint(&s3_cfg.endpoint_url) + .with_allow_http(true) .with_virtual_hosted_style_request(false) .build() .map_err(|e| MegaError::Other(e.to_string()))?;