diff options
author | Ash Furrow <ash@ashfurrow.com> | 2017-04-19 21:54:24 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-20 03:54:24 +0200 |
commit | 66b39ccaedd86030e0f1299b52b6daab43560b18 (patch) | |
tree | 88ec1cb11f2d640b1714c66f80fd9697c64fcf5e /config | |
parent | cae2a26ee374ea2bd5330e695610c1e15969f9a2 (diff) |
Removes timestamp from URLs. (#2185)
Diffstat (limited to 'config')
-rw-r--r-- | config/initializers/paperclip.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/initializers/paperclip.rb b/config/initializers/paperclip.rb index 9e2996faa..d0dd613d0 100644 --- a/config/initializers/paperclip.rb +++ b/config/initializers/paperclip.rb @@ -18,6 +18,7 @@ if ENV['S3_ENABLED'] == 'true' Paperclip::Attachment.default_options[:s3_headers] = { 'Cache-Control' => 'max-age=315576000' } Paperclip::Attachment.default_options[:s3_permissions] = ENV.fetch('S3_PERMISSION') { 'public-read' } Paperclip::Attachment.default_options[:s3_region] = ENV.fetch('S3_REGION') { 'us-east-1' } + Paperclip::Attachment.default_options[:use_timestamp] = false Paperclip::Attachment.default_options[:s3_credentials] = { bucket: ENV.fetch('S3_BUCKET'), |