http://www.jb51.cc/article/p-rqywpqne-bbs.html
这里只给出简略步骤,没有截图,自始至终使用root操作
目前最新的源码地址
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.41.tar.gz
http://www.zlib.net/zlib-1.2.11.tar.gz
https://www.openssl.org/source/openssl-1.1.0g.tar.gz
http://Nginx.org/download/Nginx-1.12.2.tar.gz
安装相关依赖
yum -y install gcc gcc-c++ automake autoconf libtool make glibc glibc-devel lsof
假定下面的源码都存放在/usr/local/src中
安装PCRE库
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.41.tar.gz
tar -zxvf pcre-8.41.tar.gz
cd pcre-8.41
./configure
make
make install
安装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
安装openssl库
wget https://www.openssl.org/source/openssl-1.1.0g.tar.gz
tar zxvf openssl-1.1.0g.tar.gz
源码编译Nginx-1.12.2
wget http://Nginx.org/download/Nginx-1.12.2.tar.gz
tar zxvf Nginx-1.12.2.tar.gz
cd Nginx-1.12.2
./configure --with-http_ssl_module \
--with-pcre=/usr/local/src/pcre-8.41 \
--with-zlib=/usr/local/src/zlib-1.2.11 \
--with-openssl=/usr/local/src/openssl-1.1.0g
make
make install
测试
curl -vo /dev/null 'http://localhost/'
安装第三方模块
参见其它博文的记录,它们都将以本博文的环境搭建为基础进行。
原文链接:https://www.f2er.com/centos/374926.html