繁体   English   中英

Rails s3 bucket SSL

[英]Rails s3 bucket SSL

我的rails 4应用程序正在使用Amazon s3存储桶来存储图像。 配置非常默认,我的production.rb文件看起来像这样

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证书。

您需要在模型中添加它

class Designs < ActiveRecord::Base
  has_attached_file :photo, :s3_protocol => :https

参考: 是否可以将Paperclip配置为生成HTTPS网址?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM