当前位置:  开发笔记 > 编程语言 > 正文

使用Paperclip和AWS S3的自定义URL

如何解决《使用Paperclip和AWSS3的自定义URL》经验,为你挑选了0个好方法。

我们使用带有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选项,但我为该选项写的任何内容似乎都没有用.

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有