2

我的rails 4应用程序使用Amazon s3存储区来存储图像。配置是相当默认与我production.rb文件看起来像这样Rails s3存储桶SSL

config.paperclip_defaults = { 
    :storage => :s3, 
    :s3_credentials => { 
    :bucket => ENV['S3_BUCKET_NAME'], 
    :access_key_id => ENV['AWS_ACCESS_KEY_ID'], 
    :secret_access_key => ENV['AWS_SECRET_ACCESS_KEY'] 
    } 
} 

在页面加载时的图像,它加载这样的:

http://s3.amazonaws.com/themoderntrunk/designs/photos/000/000/052/large_thumbnail/product12.jpeg?1389721666 

我想为它的前缀加载HTTPS:

https://s3.amazonaws.com/themoderntrunk/designs/photos/000/000/052/large_thumbnail/product12.jpeg?1389721666  

没有SSL,我的应用程序越来越警告在控制台

he page at 'https://www.themoderntrunk.com/assortments/4/designs/52-product-12' was loaded over HTTPS, but displayed insecure content from 'http://s3.amazonaws.com/themoderntrunk/designs/photos/000/000/049/grid/product9.jpg?1389721643': this content should also be loaded over HTTPS. 

授予,在我的production.rb文件中我有config.forse_ssl = true。我的应用程序也有SSL证书。

回答