Skip to content

Instantly share code, notes, and snippets.

@IceskYsl
Created January 13, 2011 02:18
Show Gist options
  • Save IceskYsl/777293 to your computer and use it in GitHub Desktop.
Save IceskYsl/777293 to your computer and use it in GitHub Desktop.
nginx config file for static files
location ~* ^.+\.(jpg|jpeg|gif|png|bmp|ico|css|js|swf|lrc)$ {
access_log off;
expires 30d;
}
location ~* ^.+\.(mp3|wma|rar|zip|flv)$ {
expires 30d;
}
location ~* ^.+\.(htm|html|xml)$ {
expires 1h;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment