openresty编译安装

此贴原始时间为:2019年6月10日15:50:58
2023年10月30日 Centos S 8 /Redhat9 测试https://openresty.org/download/openresty-1.21.4.2.tar.gz可用
2021年6月1日测试openresty1.19.3可用

安装

前往https://openresty.org/en/download.html
下载gz包

#wget https://openresty.org/download/openresty-1.15.8.1.tar.gz
下载

#tar -zxvf openresty-1.15.8.1.tar.gz 
解压

#cd openresty-1.15.8.1
进入目录

#yum -y install pcre-devel openssl openssl-devel gcc curl zlib
安装依赖(按需安装perl)

#./configure \
--prefix=/opt/openresty \
--with-pcre-jit \
--without-http_redis2_module \
--with-http_iconv_module \
--with-stream \
--with-luajit \
--with-http_stub_status_module \
--with-stream \
--with-http_v2_module \

预编译

#make && make install
编译安装

#/opt/openresty/nginx/sbin/nginx -p /opt/openresty/nginx/ -c /opt/openresty/nginx/conf/nginx.conf
启动
-p 指定启动目录 -c指定配置文件
-s stop关闭reload重载

参考

OpenResty - 安装

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×