nginx安装第三方ngx_cache_purge模块清理缓存

1. 下载模块

cd /usr/local/nginx/module
wget http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz

tar -zxvf ngx_cache_purge-2.3.tar.gz

安装编译

#进入nginx安装目录
cd /usr/local/nginx-1.9.9

./configure --prefix=/usr/local/nginx-1.9.9 \
--with-pcre \
--user=nginx \
--group=nginx \
--with-stream \
--with-threads \
--with-file-aio \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--add-module=/usr/local/nginx/module/ngx_cache_purge-2.3

说明若果同时添加多个模块可以添加多个add-module

make

make upgrade

3. 查看是否安装成功

/usr/local/nginx-1.9.9/sbin/nginx -V

安装成功截图
nginx安装第三方ngx_cache_purge模块清理缓存_第1张图片

你可能感兴趣的:(nginx,缓存,运维)