Question
Using Rails ActiveStorage with DigitalOcean Spaces CDN Custom Subdomain?
I’m working on setting up a custom subdomain for my site’s Spaces CDN and was wondering if anyone has any advice on how to get my Rails app to actually return the custom subdomain URL for images instead of the digitaloceanspaces.com
domain.
My images are being loaded from https://vglist.sfo2.digitaloceanspaces.com/variants/eK6iXEuKRi1crQgKEvwzMvjj/#{a_bunch_of_other_metadata}
, despite my CDN being set up with a subdomain of https://cdn.vglist.co
I have this in my config/storage.yml
(it’s called amazon but it’s really DO Spaces):
amazon:
service: S3
access_key_id: <%= Rails.application.credentials.dig(:digitalocean, :access_key_id) %>
secret_access_key: <%= Rails.application.credentials.dig(:digitalocean, :secret_access_key) %>
region: sfo2
bucket: vglist
endpoint: 'https://sfo2.digitaloceanspaces.com'
I tried changing the endpoint
but that didn’t seem to work. The custom subdomain is set up and everything, I just need to configure Rails and ActiveStorage to actually use it.
Thanks!
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.
×