来自:http://jinnianshilongnian.iteye.com/blog/2186270
创建目录/usr/servers,以后我们把所有软件安装在此目录
下载openresty https://openresty.org/#Download (额,打不开网站。。。 翻吧)
http://pan.baidu.com/s/1o67molG 提取码:w23a
我下载的是ngx_openresty-1.7.10.2.tar.gz
tar -xzvf ngx_openresty-1.7.10.2.tar.gz
安装LuaJIT
cd bundle/LuaJIT-2.1-20150622
make clean && make && make install
ln -sf luajit-2.1.0-alpha /usr/local/bin/luajit
ngx_openresty-1.7.10.2/bundle目录下,下载ngx_cache_purge模块,该模块用于清理nginx缓存
wget https://github.com/FRiCKLE/ngx_cache_purge/archive/2.3.tar.gz
tar -xvf 2.3.tar.gz
ngx_openresty-1.7.10.2/bundle目录下,下载nginx_upstream_check_module模块,该模块用于ustream健康检查
wget https://github.com/yaoweibin/nginx_upstream_check_module/archive/v0.3.0.tar.gz
tar -xvf v0.3.0.tar.gz
安装
cd /usr/servers/ngx_openresty-1.7.10.2
./configure --prefix=/usr/servers --with-http_realip_module --with-pcre --with-luajit --add-module=./bundle/ngx_cache_purge-2.3/ --add-module=./bundle/nginx_upstream_check_module-0.3.0/ -j2
make && make install