2016-11-07 04:35:46 +11:00
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
2016-11-30 00:20:15 +11:00
|
|
|
Aws.eager_autoload!(services: %w(S3))
|
|
|
|
|
2016-12-04 22:26:12 +11:00
|
|
|
Paperclip::Attachment.default_options[:storage] = :s3
|
|
|
|
Paperclip::Attachment.default_options[:s3_protocol] = 'https'
|
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_domain_url'
|
|
|
|
Paperclip::Attachment.default_options[:s3_host_name] = "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 }
|
2016-11-07 04:35:46 +11:00
|
|
|
|
2016-12-04 08:12:22 +11:00
|
|
|
unless ENV['S3_CLOUDFRONT_HOST'].blank?
|
2016-12-04 08:07:18 +11:00
|
|
|
Paperclip::Attachment.default_options[:url] = ':s3_alias_url'
|
|
|
|
Paperclip::Attachment.default_options[:s3_host_alias] = ENV['S3_CLOUDFRONT_HOST']
|
|
|
|
end
|
|
|
|
|
2016-11-07 04:35:46 +11:00
|
|
|
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'),
|
2016-11-30 00:20:15 +11:00
|
|
|
s3_region: ENV.fetch('S3_REGION'),
|
2016-11-07 04:35:46 +11:00
|
|
|
}
|
|
|
|
end
|