1、下载nginx
wget -c https://nginx.org/download/nginx-1.10.1.tar.gz
tar -zxf nginx-1.10.1.tar.gz -C ./
2、安装必须的文件
yum -y install openssl openssl-devel
yum -y install zlib zlib-devel
3、使用默认配置
cd nginx-1.10.1
./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/nginx.conf --with-http_stub_status_module --with-http_ssl_module
可能还需要c:
安装gcc-c++包
命令:yum -y install gcc-c++
-y:所有的询问均选择yes
4、make&&make install
5、操作
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
6、如果要改版为https,则需要开放443端口