Skip to content

Instantly share code, notes, and snippets.

@adambyrtek
Created June 25, 2009 15:41
Show Gist options
  • Save adambyrtek/135931 to your computer and use it in GitHub Desktop.
Save adambyrtek/135931 to your computer and use it in GitHub Desktop.
Expires header for assets served by nginx
# Set Expires to maximum for assets with timestamp
location ~* \.(ico|css|js|gif|jp?g|png) {
if ($args ~* [0-9]+$) {
expires max;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment