NGINX-安装教程
1.1 安装前准备
yum install gcc automake autoconf libtool make
yum install gcc gcc-c++
1.2 安装NGINX
1.2.1 选择NGINX安装目录(centos7)
cd /home/
1.2.2 安装pcre库
wget https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz
tar -zxvf pcre-8.44.tar.gz
cd pcre-8.44
./configure
make
make install
1.2.3 安装zlib库
wget http://zlib.net/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure
make
make install
1.2.4 安装ssl
cd /home
wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz
tar -zxvf openssl-1.1.1g.tar.gz
1.2.5 安装NGINX
wget http://nginx.org/download/nginx-1.18.0.tar.gz
tar -zxvf nginx-1.18.0.tar.gz
cd nginx-1.18.0
./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf
–pid-path=/usr/local/nginx/nginx.pid --with-http\_gzip\_static\_module --withhttp\_stub\_status\_module --with-file-aio --with-http\_realip\_module --withhttp\_ssl\_module --with-pcre=/home/pcre-8.44 --with-zlib=/home/zlib-1.2.11 --withopenssl=/home/openssl-1.1.1g
make -j2
make install
–with-pcre=/usr/local/src/pcre-8.44 指的是pcre-8.44 的源码路径。
–with-zlib=/usr/local/src/zlib-1.2.11指的是zlib-1.2.11 的源码路径。
1.2.6 启动测试
启动:/usr/local/nginx/nginx
测试:关闭虚拟机防火墙:systemctl stop firewalld(服务器需要开启80端口),访问对应ip即可。