Skip to content

Instantly share code, notes, and snippets.

@bschaeffer
Created May 12, 2015 21:58
Show Gist options
  • Save bschaeffer/d11fa7e788d67014c174 to your computer and use it in GitHub Desktop.
Save bschaeffer/d11fa7e788d67014c174 to your computer and use it in GitHub Desktop.
nginx_rails_asset_headers.conf
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
add_header Access-Control-Allow-Origin *;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment