Created
August 28, 2012 03:37
-
-
Save sunny0425/3494728 to your computer and use it in GitHub Desktop.
ngix read static files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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