我尝试使用 回形针 和 Amazon s3。我的桶在 EU (Ireland) 我得到这个错误:
AWS::S3::Errors::PermanentRedirect in MyControllerController
The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.
这很烦人,我试图解决这个问题,但我想我会死继续尝试。
所以这是我的代码:
s3.yml
access_key_id: *****
secret_access_key: ****
bucket: mybucketname
AWS_CALLING_FORMAT: s3-eu-west-1-amazonaws.com #not sure for this one
我在 10 分钟前将调用格式放在最后一次测试中,但没有任何变化
config/initializers/paperclip.rb
Paperclip.options[:command_path] = "/usr/local/bin/"
Paperclip::Attachment.default_options[:url] = ':s3_domain_url'
Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename'
Paperclip::Attachment.default_options[:s3_host_name] = 's3-eu-west-1-amazonaws.com'
所以,我的模型:
has_attached_file :attachment,
:storage => :s3,
:s3_credentials => "#{Rails.root}/config/s3.yml",
:path => "pictures/:id/:style.:extension",
:bucket => 'mybucketname'
最后
# in config/initializers/something.rb
Paperclip.interpolates(:s3_eu_url) { |assets, style|
"#{assets.s3_protocol}://s3-eu-west-1.amazonaws.com/#{assets.recipesappdev} /#{assets.path(style).gsub(%r{^/}, "")}"
}
所以,如果我忘记把文件放在这里,请不要犹豫告诉我。
有人有想法吗?
谢谢
编辑:
现在我有这个错误:
getaddrinfo: nodename nor servname provided, or not known
……真的不知道
最佳答案
我相信您想按照本文档中的方式设置 url: ":s3_domain_url"
:http://www.rubydoc.info/gems/paperclip/Paperclip/Storage/S3
这是我的配置。我不确定您是否需要所有这些,例如路径或区域: # development.rb config.paperclip_defaults = { storage: :s3, url: ":s3_domain_url", path: ":class/:id/:attachment/:style.:extension", s3_region: "us-east-2", s3_credentials: { bucket: "whoops-proof-dev", access_key_id: "___", secret_access_key: "___", }, }
关于ruby-on-rails - Rails 回形针和亚马逊 S3 'PermanentRedirect',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24169417/