centos7 nginx安装教程
Nginx官网 (http://nginx.org/en/download.html)
下载nginx
wget http://nginx.org/download/nginx-1.23.4.tar.gz
准备编译安装环境
yum install -y gcc-c++pcre pcre-devel
支持HTTPS
yum -y install openssl openssl-devel
支持GZIP
yum -y install zlib zlib-devel
在安装目录下执行脚本
./configure --prefix=/usr/local/nginx --with-http_gzip_static_module --with-http_ssl_module
make && make install
注意:本文归作者所有,未经作者允许,不得转载