Rails回形针和亚马逊S3'PermanentRedirect'

时间:2014-06-11 17:51:22

标签: ruby-on-rails heroku amazon-web-services amazon-s3 paperclip

我尝试使用 paperclip 和亚马逊s3。我的桶位于 EU (爱尔兰)我收到此错误:

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

......真的不知道

1 个答案:

答案 0 :(得分:0)

我认为您要在此文档中设置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: "___", }, }