2013-09-06 15:39:11
来 源
itjs.cn
Nginx
该篇讲述Nginx服务器配置Purge清除缓存的步骤,希望对于初学Nginx服务器相关的朋友有帮助,更多Nginx安装、配置、报错处理等资源请本站内搜索。。

在编译安装Nginx的时候加上了Purge模块,来清除缓存.

www.firefoxbug.net/index.html ==>> www.firefoxbug.net/purge/index.html就能清除.

但是之前配置过程中出现了404,但是缓存明明是存在的,就是Purge不了.后来更改Purge的配置就OK了

## Cache_proxy Purge

location ~ /purge(/.*) {

allow all;

proxy_cache_purge cache_one $host$1$is_args$args;

#proxy_cache_purge cache_one $host;

error_page 405 =200 /purge$1;

}

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。