内容简介:使用 nginx 的 proxy_store 缓存文件加速访问速度。nginx 的 proxy_store 可以将后端服务器的文件暂存在本地。基于此,可以在 nginx 上缓存后端服务器文件,加快访问速度。 比如:注意:由于 proxy_store 没有过期机制,因此如果后端文件有更新。需要采用其他方式删除 proxy_store 的缓存文件,以便 proxy_store 刷新文件。
Nginx proxy_store
使用 nginx 的 proxy_store 缓存文件加速访问速度。
nginx 的 proxy_store 可以将后端服务器的文件暂存在本地。基于此,可以在 nginx 上缓存后端服务器文件,加快访问速度。 比如:
upstream http_tornado { server 127.0.0.1:8000; server 127.0.0.1:8001; } server { # 省略其他配置 location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|html|htm|css)$ { root /opt/data/product/blog/cache; proxy_store on; proxy_store_access user:rw group:rw all:rw; proxy_temp_path /opt/data/product/blog/cache; # 针对 html,js 等静态资源文件,判断本地是否已经缓存。 # 如果已经缓存,则从本地获取,否则转发给后端服务器。 if ( !-e $request_filename) { proxy_pass http://http_tornado; } } }
注意:由于 proxy_store 没有过期机制,因此如果后端文件有更新。需要采用其他方式删除 proxy_store 的缓存文件,以便 proxy_store 刷新文件。
参考资料
茶歇驿站
一个可以让你停下来看一看,在茶歇之余给你帮助的小站,这里的内容主要是后端技术,个人管理,团队管理,以及其他个人杂想。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
REST in Practice
Jim Webber、Savas Parastatidis、Ian Robinson / O'Reilly Media / 2010-9-24 / USD 44.99
Why don't typical enterprise projects go as smoothly as projects you develop for the Web? Does the REST architectural style really present a viable alternative for building distributed systems and ent......一起来看看 《REST in Practice》 这本书的介绍吧!