Question

Seahorse::Client::NetworkingError while uploading file to spaces

I’m following the How To Use ActiveStorage in Rails 6 with DigitalOcean Spaces tutorial and after setting up DigitalOcean Space and trying to upload an image I get the following error

Seahorse::Client::NetworkingError (SSL_connect returned=1 errno=0 state=error: certificate verify failed (unspecified certificate verification error))

I’m running the app with ruby 2.7.1 on macOS 13.0 on M1 chip. ruby has been compiled with the following options

RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@1.1)"

Submit an answer


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!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Turns out the problem was in incorrect bucket name in the storage config. bucket should be the same as the endpoint jsut without https:// part

digitalocean:
  endpoint: https://bucket-name.region.digitaloceanspaces.com
  bucket: bucket-name.region.digitaloceanspaces.com

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up