我已经在这个问题上工作了好几个小时,但却无法解决这个问题。我运行git clean然后意识到我的s3.yml文件被删除了。我创建了新密钥并将它们放在一个新的s3.yml文件中。我之前没有改变任何其他工作就好了。我错过了什么?
我收到了:Aws::Errors::MissingCredentialsError (unable to sign request without credentials set):
这是我的代码:
development.rb
config.paperclip_defaults = {
storage: :s3,
s3_region: 'us-east-1',
bucket:'mybucket',
s3_credentials: "#{Rails.root}/config/s3.yml"
}
production.rb
config.paperclip_defaults = {
storage: :s3,
s3_credentials: {
bucket: ENV.fetch('S3_BUCKET_NAME'),
access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID'),
secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY'),
s3_region: ENV.fetch('AWS_REGION'),
}
}
# Secret key base for non-existent secrets.yml file
config.secret_key_base = ENV["SECRET_KEY_BASE"]
s3.yml(使用新的访问密钥)
S3_BUCKET_NAME: mybucket
AWS_ACCESS_KEY_ID: ***
AWS_SECRET_ACCESS_KEY: ***
AWS_REGION: us-east-1
发布课程
class Post < ApplicationRecord
belongs_to :user, counter_cache: true
belongs_to :category
validates :title, :presence => true
validates :content, :presence => true
has_attached_file :thumbnail, styles: {
medium: '270x170#',
large: '560x280#',
large2: '540x340#'
}
# Validate the attached image is image/jpg, image/png, etc
validates_attachment_content_type :thumbnail, :content_type => /\Aimage\/.*\Z/
end
答案 0 :(得分:1)
当您在开发环境中收到错误时,我认为错误是由于 s3_credentials:&#34;#{Rails.root} /config/s3.yml" 。
鉴于你发布的s3.yml我不认为 s3_credentials 将填充json结构,就像你在生产环境中那样。
我建议您像在生产环境中一样加载文件并填充json。