nginx官方网站下载地址 http://nginx.org下载的版本根据你的平台和需求而定。
下载apache到/usr/local/src/
[root@localhost]# cd /usr/local/src/
[root@localhost src]# wget https://nginx.org/download/nginx-1.10.1.tar.gz
解压
[root@localhost src]# tar tar -zxvf nginx-1.10.1.tar.gz
配置编译参数
[root@localhost src]# cd nginx-1.10.1
[root@localhost nginx-1.10.1]#./configure --prefix=/usr/local/nginx --with-pcre=../pcre-8.38/
编译安装
[root@localhost nginx-1.10.1]make && make install
启动
[root@localhost nginx-1.10.1]./nginx