Centos7安装Nginx(openresty)

Nginx官网: https://www.nginx.com/

nginx Openresty:http://openresty.org/cn/download.html

yum install -y pcre-devel openssl-devel perl gcc curl
cd /usr/local/
wget https://openresty.org/download/openresty-1.17.8.2.tar.gz
cd /usr/local/
tar -zxvf openresty-1.17.8.2.tar.gz
cd /usr/local/
mv openresty-1.17.8.2 openresty
cd /usr/local/openresty/
/configure --with-luajit --without-http_redis2_module --with-http_iconv_module
cd /usr/local/openresty/
make && make install

## 启动
cd /usr/local/openresty/nginx/sbin
./nginx
## 检查是否安装成功
ps -aux | grep nginx

posted @ 2021-12-09 07:58  vicoSong  阅读(150)  评论(1编辑  收藏  举报