By pmorhun
Hello,
I’ve just started to use Space and got an error. I use Laravel framework and tried to put simple txt file to bucket. When I do it, I have next error:
"Error executing “PutObject” on “http://.fra1.digitaloceanspaces.com/1.txt"; AWS HTTP error: cURL error 60: SSL: no alternative certificate subject name matches target host name '.fra1.digitaloceanspaces.com’ (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)”
I don’t want to use SSL now and can’t disable it. My config is below:
's3' => [
'driver' => 's3',
'scheme' => 'http',
'visibility' => 'public',
'key' => env('S3_KEY'),
'secret' => env('S3_SECRET'),
'region' => env('S3_REGION'),
'bucket' => env('S3_BUCKET'),
'endpoint' => env('S3_ENDPOINT'),
],
Does someone know how can I fix this issue?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there,
I believe that the error is occurring as you are not using https:// for your Spaces URL.
So you need to change http://**.fra1.digitaloceanspaces.com/1.txt to https://**.fra1.digitaloceanspaces.com/1.txt
For more information, I would recommend following the steps here on how to integrating an S3-Compatible Object Storage into your Laravel Application:
Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.