Adding optional S3, fail-mastodon
This commit is contained in:
parent
93212bc2c4
commit
3ab193bc3f
5 changed files with 42 additions and 48 deletions
10
config/initializers/paperclip.rb
Normal file
10
config/initializers/paperclip.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
if ENV['S3_ENABLED'] == 'true'
|
||||
Paperclip::Attachment.default_options[:storage] = :s3
|
||||
|
||||
Paperclip::Attachment.default_options[:s3_credentials] = {
|
||||
bucket: ENV.fetch('S3_BUCKET'),
|
||||
access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID'),
|
||||
secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY'),
|
||||
s3_region: ENV.fetch('S3_REGION')
|
||||
}
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue