Centos配置安装Nginx

1、编译安装

安装zlib-develpcre-devel等依赖包

[root@centos ~]# yum -y install gcc gcc-c++ make libtool zlib zlib-devel pcre pcre-devel openssl openssl-devel

下载nginx的源码包:http://nginx.org/download

解压源码包:

[root@centos ~]# tar -zxvf nginx-1.12.2.tar.gz
[root@centos ~]# cd nginx-1.12.2/

2、安装ngnix

添加nginx组

[root@centos ~]# groupadd nginx   

创建nginx运行账户nginx并加入到nginx组,不允许nginx用户直接登录系统

[root@centos ~]# useradd -g nginx nginx -s /sbin/nologin

编译并安装

[root@centos nginx-1.12.2]# ./configure --prefix=/usr/local/nginx-1.12.2 --with-http_dav_module --with-http_stub_status_module --with-http_addition_module --with-http_sub_module --with-http_flv_module --with-http_mp4_module --with-pcre --with-http_ssl_module --with-http_gzip_static_module --user=nginx --group=nginx
[root@centos nginx-1.12.2]# make && make install

相关选项说明:

增加PUT,DELETE,MKCOL:创建集合,COPY和MOVE方法

--with-http_dav_module

获取Nginx的状态统计信息

--with-http_stub_status_module

作为一个输出过滤器,支持不完全缓冲,分部分相应请求

--with-http_addition_module

允许一些其他文本替换Nginx相应中的一些文本

--with-http_sub_module

提供支持flv视频文件支持

--with-http_flv_module

提供支持mp4视频文件支持,提供伪流媒体服务端支持

--with-http_mp4_module

启用ngx_http_ssl_module

--with-http_ssl_module

3、安装完成之后

[root@centos nginx-1.12.2]# ln -s /usr/local/nginx1.10/sbin/nginx /usr/local/sbin/
[root@centos nginx-1.12.2]# nginx –t

更改nginx安装目录所属组和用户,否则可能出现403

[root@centos ~]# chown nginx:nginx -R /usr/local/nginx-1.12.2/

启动nginx

[root@centos nginx-1.12.2]# nginx
[root@centos nginx-1.12.2]# netstat -anpt | grep nginx

查看帮助

[root@centos ~]# nginx -h
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值