欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx 1.10.2 安装

程序员文章站 2022-06-04 13:16:01
...

glibc 升级到2.14+

glibc2.14升级步骤

PCRE安装

pcre下载路径

cd /usr/local/src/
wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
tar zxvf pcre-8.35.tar.gz
cd pcre-8.35
./configure
make && make install
/usr/local/src/pcre-8.35/pcre-config --version

安装zlib库

zlib 下载路径

wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install

 

nginx下载

安装包下载路径

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/root/appconfig/pcre-8.35

编译

make && make install

 

相关标签: nginx pcre zlib