centos7安装openresty

5/24/2020 nginx

# 1.下载

wget --no-check-certificate https://openresty.org/download/openresty-1.21.4.1.tar.gz
1

# 2.解压

tar -xzvf openresty-1.21.4.1.tar.gz
1

# 3.安装

cd openresty-1.21.4.1
./configure
make
make install
ln -s /usr/local/openresty/nginx/sbin/nginx /usr/bin/nginx
1
2
3
4
5

# 4.启动

nginx
1
Last Updated: 11/25/2022, 11:39:30 PM