简体   繁体   中英

Merge uploaded Amazon S3 images into CloudFront

I started to integrate CloudFront into my exciting Rails App, everything with CloudFront is working fine, except that the old uploaded images can't be accessed.

CarrierWave.configure do |config|
  config.fog_credentials = {
    :provider               => 'AWS',                        
    :aws_access_key_id      => ENV['AWS_ACCESS_KEY_ID'],     
    :aws_secret_access_key  => ENV['AWS_SECRET_ACCESS_KEY'], 
  }
  config.asset_host     = ENV['CLOUDFRONT_ENDPOINT']
  config.fog_directory  = 'oktob-editor'                     
  config.fog_public     = true                                        
  config.fog_attributes = {'Cache-Control'=>"max-age=#{365.day.to_i}"}
end

Example of old uploaded image

https://oktob-editor.s3.amazonaws.com/uploads/post/image/127/thumb_Ruby_on_Rails.svg.png

After I integrated CloudFront and set asset_host it becomes

http://ID.cloudfront.net/uploads/post/image/127/thumb_Ruby_on_Rails.svg.png

with

<Error><Code>AccessDenied</Code><Message>Access Denied</Message><RequestId>D368D2E641BBBB64</RequestId><HostId></HostId></Error>

So is there a way that enable old images to work properly with CloudFront

Seems like changing the Restrict Bucket Access to Yes makes it to work

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM