Browse Source

Added support for specifying S3 storage classes in environment (#22480)

closed-social-glitch-2
Jamie Hoyle 1 year ago
committed by GitHub
parent
commit
de137e6bb0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      config/initializers/paperclip.rb

+ 6
- 0
config/initializers/paperclip.rb View File

@ -90,6 +90,12 @@ if ENV['S3_ENABLED'] == 'true'
)
end
if ENV.has_key?('S3_STORAGE_CLASS')
Paperclip::Attachment.default_options[:s3_headers].merge!(
'X-Amz-Storage-Class' => ENV['S3_STORAGE_CLASS']
)
end
# Some S3-compatible providers might not actually be compatible with some APIs
# used by kt-paperclip, see https://github.com/mastodon/mastodon/issues/16822
if ENV['S3_FORCE_SINGLE_REQUEST'] == 'true'

Loading…
Cancel
Save