Nginx 源码编译安装环境

    Centos7

    Nginx1.8.1    下载地址:http://nginx.org/download/ 选择自己想要的版本

     我这边使用1.8.1,下载地址:http://nginx.org/download/nginx-1.8.1.tar.gz 

  

1、编译前安装环境

[root@CentOS7_30 ~]# yum groupinstall "Development Tools" -y                #安装开发工具包
[root@CentOS7_30 ~]# yum install openssl-devel pcre-devel                   #ssl、pcre的devel包

2、下载Nginx

[root@CentOS7_30 ~]# cd /usr/local/src/                                    #进入src目录
[root@CentOS7_30 src]# wget    #下载Nginx
[root@CentOS7_30 src]# tar xf nginx-1.8.1.tar.gz                           #解压缩
[root@CentOS7_30 src]# cd nginx-1.8.1/                                     #进入nginx-1.8.1目录
[root@CentOS7_30 nginx-1.8.1]#  ./configure \                              #编译参数,按照自己的需要
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx --group=nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-threads   \
--with-file-aio  \
--with-ipv6 
[root@CentOS7_30 nginx-1.8.1]# make && make install
[root@CentOS7_30 nginx-1.8.1]# useradd -r nginx                     #创建Nginx,-r指定为系统用户
[root@CentOS7_30 nginx-1.8.1]# nginx -t                             #测试语法是否用问题
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@CentOS7_30 nginx-1.8.1]# /usr/sbin/nginx                      #启动Nginx
[root@CentOS7_30 nginx-1.8.1]# ss -tnl| grep 80                     #查看是否成功
LISTEN     0      128                       *:80                       *:* 
[root@CentOS7_30 nginx-1.8.1]# ifconfig | grep "inet 192.168"       #查看地址
        inet 192.168.11.30  netmask 255.255.255.0  broadcast 192.168.11.255
[root@CentOS7_30 nginx-1.8.1]# iptables -F                          #清楚防火墙规则,要么自己增加80端口
[root@CentOS7_30 nginx-1.8.1]# setenforce 0                         #设定selinux为permissive

访问试一试看看: