Centos 7 编译nginx 1.14.0

Posted iove

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 7 编译nginx 1.14.0相关的知识,希望对你有一定的参考价值。

步骤一:下载nginx安装包

wget https://nginx.org/download/nginx-1.14.0.tar.gz

步骤二:安装nginx依赖包

yum install -y gcc gcc-c++ pcre-devel openssl-devel
tar xvf nginx*
cd nginx*

可选步骤:隐藏nginx版本号,nginx 版本一定要是1.14.0,将不能修改成功。

sed -i s/"Server: nginx"/"Server: 修改nginx名称"/g src/http/ngx_http_header_filter_module.c #例如:xiongmao
sed -i s/1014000/修改nginx版本号/g src/core/nginx.h #例如:100000
sed -i s/1.14.0/修改nginx版本号/g src/core/nginx.h #例如:1.0.0
sed -i s/"nginx/"修改nginx名称/g src/core/nginx.h #例如:xiongmao
sed -i s/"NGINX"/"修改nginx名称"/g src/core/nginx.h #例如:XIONGMAO

步骤三:安装nginx

./configure --with-http_ssl_module
make 
make install
ln -s /usr/local/nginx/sbin/nginx /bin

 

以上是关于Centos 7 编译nginx 1.14.0的主要内容,如果未能解决你的问题,请参考以下文章

centos7 安装 nginx

CentOS7.4 源码编译安装LNMP

CentOS源码安装nginx

Centos 7.4 yum方式安装nginx

CentOS 7 LNMP部署—Nginx

nginx配置socket服务