You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a digital ocean problem but we were trying to test with MINIO S3 (https://min.io/) on our setup it seems to not like adding the bucket name as a subdomain, from looking at other issues (#16) I saw that you can add the below to the plugin and this fixes the problem for us but can this be set via a config?
$config['bucket_endpoint'] = true;
In Volume.php:
protected function createAdapter()
{
$config = $this->_getConfigArray();
$config['bucket_endpoint'] = true;
$client = static::client($config);
return new AwsS3Adapter($client, $this->getBucket(), $this->getSubfolder());
}
The text was updated successfully, but these errors were encountered:
Not a digital ocean problem but we were trying to test with MINIO S3 (https://min.io/) on our setup it seems to not like adding the bucket name as a subdomain, from looking at other issues (#16) I saw that you can add the below to the plugin and this fixes the problem for us but can this be set via a config?
$config['bucket_endpoint'] = true;
In Volume.php:
The text was updated successfully, but these errors were encountered: