4

我的应用程序在 heroku 上运行,并已配置为使用 Amazon s3 将所有上传到存储桶的资产保存。一切正常。因此,当我尝试在本地上传图像(开发)时,出现以下错误

AWS::S3::Errors::PermanentRedirect in RecipesController#update 
The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.

我的更新操作

 def update
 @recipe = Recipe.find(params[:id])

 if @recipe.update_attributes(params[:recipe])
  redirect_to my_recipes_path, :notice => "Successfully updated recipe"
 else 
 render :action => 'edit'

end
end

尽管经过一番阅读,这似乎是因为我在欧盟使用了一个存储桶(不是默认的美国存储桶)

我有两个桶,一个用于开发,一个用于生产。并创建了一个 s3.yml 文件来保存凭据,尽管我认为使用 ENV 变量会更好,但我使用 Ubuntu 并且可以更新我的 .bashrc 文件?不确定那个..无论如何我的 s3.yml 文件(为了安全而删除了实际密钥)

development:
access_key_id: KEY
secret_access_key: KEY
bucket: assets.recipesappdev

production:
access_key_id: KEY
secret_access_key: KEY
bucket: assets.recipesapp

和我的食谱模型配置

has_attached_file :avatar, 
:styles => { :myrecipes => "260x180#", :showrecipe => "600x300#", :medium => "300x300>", :thumb => "100x100>" },
 :storage => :s3,
 :s3_credentials => "#{Rails.root}/config/s3.yml",
  :path => "/images/:id/:style.:extension"

有没有人解决这个问题,我试过这个,例如http://www.conandalton.net/2011/02/paperclip-s3-and-european-buckets.html但这不起作用,虽然我的初始化程序可能是错误的,我尝试配置以适合我的应用程序

  Paperclip.interpolates(:s3_eu_url) { |assets, style|
 "#{assets.s3_protocol}://s3-eu-west-1.amazonaws.com/#{assets.recipesappdev}  /#{assets.path(style).gsub(%r{^/}, "")}"
   }
4

2 回答 2

13

尝试将url选项设置has_attached_file":s3_domain_url"。(不要忘记用引号括起来。)

has_attached_file :avatar, 
                  :styles => { :myrecipes => "260x180#", :showrecipe => "600x300#", :medium => "300x300>", :thumb => "100x100>" },
                  :storage => :s3,
                  :s3_credentials => "#{Rails.root}/config/s3.yml",
                  :path => "/images/:id/:style.:extension",
                  :url => ":s3_domain_url"

请参阅 RDoc 以获取Paperclip::Storage::S3.

于 2012-12-15T17:06:42.077 回答
6

对于像我这样的人,url解决方案不起作用尝试设置s3_host_name选项:

:s3_host_name => "s3-eu-west-1.amazonaws.com"

看起来欧洲节点有这个问题。

取自这里

于 2014-08-01T12:43:52.880 回答