1、编译安装
安装zlib-devel
、pcre-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