Open grekpg opened 6 years ago
I'm the Senior PM for Wasabi. Wasabi should work with the adaptor as long as you can modify the endpoint in the PHP like our example in our KB:
endpoint: 'https://s3.wasabisys.com'
version: latest
region: "us-east-1"
credentials:
key: '%env(wasabi_access_key)%'
secret: '%env(wasabi_secret_key)%'
config: product_wasabi: aws_s3: service_id: 'app_files_s3_wasabi' bucket_name: '123123-test' detect_content_type: true
but i get
The configured bucket "123123-test" does not exist.
when i connect directtly form S3Client
$s3Client = S3Client::factory(array( 'endpoint' => 'http://s3.wasabisys.com', 'profile' => 'default', 'region' => 'us-east-1', 'version' => 'latest', ));
$bucket = '123123-test';
$s3Client->doesBucketExist(array('Bucket' => $bucket )); give true
I want connect - wasabi.com S3-compatible to KnpGaufretteBundle i dont see adapter for wasabi, but its S3-compatible
my config
services :
vendor/guzzlehttp/psr7/src/Request.php Line: 101
any idea how correctly connect to wasabi.com ?