1、取得nginx及nginx cache purge模塊 wget http://nginx.org/download/nginx-0.8.53.tar.gz
wget http://labs.frickle.com/files/ngx_cache_purge-1.2.tar.gz
2、安裝nginx及purge模塊
cd /usr/local/src
tar zxvf nginx-0.8.53.tar.gz
tar zxvf ngx_cache_purge-1.2.tar.gz
cd nginx-0.8.53
./configure \
--prefix=/usr/local/nginx_0853 \
--http-client-body-temp-path=/usr/local/nginx_0853/body \
--http-proxy-temp-path=/dev/shm \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--add-module=../ngx_cache_purge-1.2
make && make install
3、管理辦法
使用squidclient進(jìn)行管理
安裝squidclient
aptitude install squidclient
刪除指定url
squidclient -h 192.168.0.6 -p 80 -m PURGE url
參考文檔:
http://wiki.nginx.org/NginxChsCachePurge |