Question
How to make Rails uploads to a Digital Ocean bucket to be public by default?
Hi there,
I can upload files from Rails 6 using Active Storage direct upload to a Digital Ocean Spaces bucket, but even when in my app’s storage.yml file I am including a public-read ACL for uploads, when I check the files in the bucket, their permissions are set to private, not public.
Here’s my storage.yml file from the Rails app:
digitalocean:
service: S3
access_key_id: <%= Credential.digitalocean_access_key_id %>
secret_access_key: <%= Credential.digitalocean_secret_access_key %>
endpoint: https://sfo2.digitaloceanspaces.com
region: sfo2
bucket: mybucket
upload:
acl: "public-read"
As you can see I do specify a “public-read” upload ACL for Active Storage. The files do upload fine but the file permission is set to private.
Any hints on this, please?
Any help is appreciated, thank you!
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.
×
I have same problem. @eddd did you find solution ?
@eddd @ProjetsIO I think this was fixed in 6.1 with this PR? https://github.com/rails/rails/pull/39055
Previously, Direct Uploads weren’t passing the upload options like they were supposed to.