我们使用带有aws-sdk gem的Paperclip在我们的Rails应用程序中存储和显示图像:
class User < ActiveRecord::Base has_attached_file :image, storage: :s3, s3_credentials: 'config/s3.yml', s3_protocol: :https, styles: { curriculum: '120x120>', medium: '600x600>', thumb: '200x200>' }, default_url: 'missing_photo.png' end
如果我然后<%= image_tag current_user.image.url %>
在html.erb文件中使用,我会得到以下HTML : .
如何https://s3.amazonaws.com/
将其作为自定义URL https://example.com
?我在Cloudfront中设置了所有域以及SSL证书.
我查看了Paperclip S3 Storage文档.有一个:url
选项,但我为该选项写的任何内容似乎都没有用.