CORS with Amazon S3 and CloudFront

MicroPyramid
1 min readOct 4, 2017

We struggle to load fonts from CloudFront because of CORS.

CORS — Cross Origin Resource Sharing is a security measure to block macious scripts or resources loading from foreign domain origins. This security will become hurdle when want to load resources from Amazon CloudFront. this is often encounter when we want to load fonts from CloudFront. Here is simple yet detailed steps to enable CORS on CloudFront.

S3

we need to enable origin header in S3 and to do that follow these steps.

  1. open s3 and click on bucket properties, under “permissions” section you will see “Edit CORS Configuration”
  2. open CORS Configuration and paste the following

    *
    GET
    3000
    Authorization
    Content-*
    Host
  3. save it and you are done.
  4. Here you can increase “MaxAgeSeconds” it defines the cache time in browser. Its better to have a greater value if you are serving staic files those will not change often.

CloudFront

CloudFront will cache content from S3 bucket but we need to enable CORS headers to load fronts from it. And to do that, ere are the steps to perform on CloudFront.

  1. Open your CloudFront distribution and under “Behaviours”, click on default behaviours and edit it.
  2. Set “Forward Headers” to “whitelist”
  3. enable “Origin” from “Whitelist Headers” by moving it to right side.
  4. Save the settings and you are done with it, these settings will be reflected shorly based on the cache settings you had in S3 CORS Configuration.

Happy serving content with Amazon CloudFront.

The article was originally published at MicroPyramid blog.

--

--

MicroPyramid

Python, Django, Android and IOS, reactjs, react-native, AWS, Salesforce consulting & development company