diff options
author | Eugen <eugen@zeonfederated.com> | 2017-01-15 14:29:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-15 14:29:47 +0100 |
commit | 16f9490d332b31b4fd5549bf6a8c8b7461a9b303 (patch) | |
tree | a1298f58949fc0f8e2f51f8409fc47e47d8d7cbf | |
parent | bfec9aaee077c6dd54081a89f697271d7a5c0a6a (diff) | |
parent | a097dd489b8530c179ecc65dba60fe06ed66ea3b (diff) |
Merge pull request #476 from ineffyble/fix-paperclip-s3-acl
Fix S3 default settings
-rw-r--r-- | config/initializers/paperclip.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/initializers/paperclip.rb b/config/initializers/paperclip.rb index 999ff47c7..71a7b514e 100644 --- a/config/initializers/paperclip.rb +++ b/config/initializers/paperclip.rb @@ -11,7 +11,7 @@ if ENV['S3_ENABLED'] == 'true' Paperclip::Attachment.default_options[:s3_host_name] = ENV.fetch('S3_HOSTNAME') { "s3-#{ENV.fetch('S3_REGION')}.amazonaws.com" } Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename' Paperclip::Attachment.default_options[:s3_headers] = { 'Cache-Control' => 'max-age=315576000', 'Expires' => 10.years.from_now.httpdate } - Paperclip::Attachment.default_options[:s3_permissions] = 'public' + Paperclip::Attachment.default_options[:s3_permissions] = 'public-read' Paperclip::Attachment.default_options[:s3_region] = ENV.fetch('S3_REGION') { 'us-east-1' } Paperclip::Attachment.default_options[:s3_credentials] = { |