Skip to content

Instantly share code, notes, and snippets.

@sunny0425
Created August 28, 2012 03:37
Show Gist options
  • Save sunny0425/3494728 to your computer and use it in GitHub Desktop.
Save sunny0425/3494728 to your computer and use it in GitHub Desktop.
ngix read static files
# css|js|ico|gif|jpg|jpeg|png|txt|html|htm|xml|swf|wav这些都是静态文件,但应分辨,js、css可能经常会变,过期时间应小一些,图片、html基本不变,过期时间可以设长一些
location ~* ^.+\.(gif|jpg|jpeg|png|txt|html)$ {
root /www/data/project/current/public;
access_log off;
expires 30d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment