Centos编译nginx

Posted BBinChina

tags:

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

Centos 安装 nginx

1、下载nginx源码

a)wget https://nginx.org/download/nginx-1.21.1.tar.gz

2、解压

a)tar -xvf nginx-1.21.1.tar.gz

3、编译

a)cd 进入解压后的nginx目录
b)配置ssl模块 ./configure --with-http_ssl_module
报错信息:
./configure: error: the HTTP rewrite module requires the PCRE library.
需要安装库:
yum -y install pcre-devel openssl openssl-devel

c)编译 执行make命令
d)安装 执行 make install 命令
e)安装成功后,nginx的主目录为 /usr/local/nginx
f)cd /usr/local/nginx/ 进入nginx主目录进行配置操作
g)编辑nginx配置:
i.cd conf/
ii.vi nginx.conf
iii.通用配置:
修改工作进程数(4个) worker_processes 4;

配置多核cpu(4核) worker_cpu_affinity 0001 0010 0100 1000;
使用epoll事件模型 events {
use epoll;
worker_connections 1024;
}
开启gzip压缩 gzip on;
Server里配置项目位置 location / {
root web-alpha;
try_files $uri $uri/ @rewrite;
}

配置完记得:wq保存

4、启动nginx

a)cd /usr/local/nginx/sbin 进入nginx进程目录
b)./nginx 即运行进程
c)通过 ps -ef | grep nginx 查看进程是否启动
d)Nginx 日志目录 :/usr/local/nginx/logs

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

centos 6.9 编译安装 Nginx1.12.1

CentOS 7.2源码包编译安装nginx-1.10.2

如何在阿里云Centos下安装Nginx

Centos编译nginx

centos7环境下安装nginx

Centos7 编译安装Nginx