## 文件缓存
>[info] #### 设置静态资源缓存
~~~
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires 30d;
access_log off;
}
~~~
>[info] #### 取消nginx对静态资源缓存
~~~
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
add_header Cache-Control no-store;
access_log off;
}
~~~