Browse Source

Fix typo in paperclip.rb (#5936)

pull/4/head
THE BOSS ♨ 6 years ago
committed by Yamagishi Kazutoshi
parent
commit
17e26f8afe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      config/initializers/paperclip.rb

+ 1
- 1
config/initializers/paperclip.rb View File

@ -19,7 +19,7 @@ if ENV['S3_ENABLED'] == 'true'
s3_region = ENV.fetch('S3_REGION') { 'us-east-1' }
s3_protocol = ENV.fetch('S3_PROTOCOL') { 'https' }
s3_hostname = ENV.fetch('S3_HOSTNAME') { "s3-#{s3_region}}.amazonaws.com" }
s3_hostname = ENV.fetch('S3_HOSTNAME') { "s3-#{s3_region}.amazonaws.com" }
Paperclip::Attachment.default_options.merge!(
storage: :s3,

Loading…
Cancel
Save