当前位置 : 主页 > 编程语言 > ruby >

ruby-on-rails – Rails回形针不显示来自Amazon S3的上传图像

来源:互联网 收集:自由互联 发布时间:2021-06-23
我将图像上传到Amazon S3,但它们没有显示. 我收到此错误: ErrorCodePermanentRedirect/CodeMessageThe bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to thi
我将图像上传到Amazon S3,但它们没有显示.

我收到此错误:

<Error>
<Code>PermanentRedirect</Code>
<Message>
The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.
</Message>
<Bucket>cb123</Bucket>
<Endpoint>cb123.s3.amazonaws.com</Endpoint>
<RequestId>870BC2E8570EF4E7</RequestId>
<HostId>
yuBkeXxftr7O9Ib0SasFTq8Hlvgc7hkhx9VMr+VwRL74qSDgJ9rqMgEU9noRIQe/
</HostId>
</Error>

这是我的设置:

has_attached_file :image, styles: { medium: "400x400#", small: "250x250#", :url =>':s3_domain_url', :path => '/:class/:attachment/:id_partition/:style/:filename' }

谢谢!

将其添加到application.rb或每个环境的配置文件中:

config.paperclip_defaults = {
  :storage => :s3,
  :s3_host_name => 's3-eu-central-1.amazonaws.com',
  :s3_credentials => {
    :bucket => 'your bucket',
    :access_key_id => 'your access-key-id',
    :secret_access_key => 'your secret-access-key'
  }, 
  :url =>':s3_domain_url',
  :path => '/:class/:attachment/:id_partition/:style/:filename'
}

然后,您可以从模型中删除:url和:path config.

网友评论