This guide will walk you through using Amazon CloudFront as an asset CDN for your Rails app
Setting up a CDN for your application assets is not too difficult nowadays. This guide will walk you through using Amazon CloudFront as an asset CDN for your Rails application.
There are other guides out there today; Heroku's CloudFront guide is pretty good, but I think misses a few key points about CORS and denying requests outside /assets
. This guide should fill those in.
Sign up in aws.amazon.com and create a new CloudFront distribution. This will get you a subdomain (like d1h2t3n5.cloudfront.net
) that will act as a caching proxy to your actual site. You may opt to use your own domain names if you like.
Make sure that OPTIONS
is also being passed through. This will allow CORS requests through (see next section). Also, enable "compress automatically" to let CloudFront handle gzip compression for you.
This will make image_tag
, asset_url
and other asset-related helpers point your assets to your CloudFront distribution. Do this only for production.rb
.
Enable the serving of static assets. You will want to do this if you're using Heroku or any 12-factor-style deployment. If you use a reverse proxy like Nginx or Haproxy, skip this section and configure your reverse proxy to handle CORS instead.
If you use serve_static_assets
, you will need to enable cross-origin requests for assets. This will prevent issues like Firefox not loading custom icons and fonts.
rack-cors
gemUse the rack-cors gem to enable cross-origin requests. At time of writing, it is at version 0.4.0.
This will make assets accessible from any website. You want to enable this because you'd want yoursite.com
to be able to load assets out of <id>.cloudfront.net
.
Set up your app to disallow Cloudfront from fetching anything but /assets
. This uses User Agent detection; see CloudFront's docs on User-Agent headers for information.
If you miss this step, you'll be able to access the rest of your site in your CloudFront URL. While those aren't public, you'd best have them secured as it can open up security flaws and possibly lead to SEO penalties.