2016年11月14日 星期一

電腦 nginx的ngx_cache_purge功能

下載ngx_cache_purge
   wget http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz
   tar zxvf ./ngx_cache_purge-2.3.tar.gz

重新編譯,增加--add-module=../ngx_cache_purge-2.3 參數
make clean
./configure \

--add-module=../ngx_cache_purge-2.3

make
make install


設定nginx.conf
vi /etc/nginx/nginx.conf

proxy_cache_path   /tmp/cache   keys_zone=tmpcache:10m;

location / {
proxy_pass http://127.0.0.1:8000;
proxy_cache tmpcache;
proxy_cache_key $uri$is_args$args;
proxy_cache_purge PURGE from 127.0.0.1;
}

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。