0

在 aws elastic beantalk 中部署的站点

aws.yml

 production:
  access_key_id: 123333231331....
  secret_access_key: 12212dddddd........

生产.rb

  config.paperclip_defaults = {
  :storage => :s3,
  :preserve_files => true,
  :s3_credentials => 'aws.yml',
  :s3_region => 'ap-south-1',
  :s3_host_name => 's3.ap-south-1.amazonaws.com',
  :bucket => 'xxxxxx'
}

我还在 s3 存储桶中授予公共访问权限。

anyone: read write

宝石...

gem 'aws-sdk', '~> 2.10', '>= 2.10.85'

config 文件夹中的 aws.yml 文件夹 -- config/aws.yml

4

1 回答 1

0

看起来应用程序没有找到您的 S3 凭据文件。在您的production.rb中,尝试为其提供文件的完整路径:

:s3_credentials => "#{Rails.root}/config/aws.yml"
于 2017-11-20T17:58:28.733 回答