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
--prefix 指定位置
若是报错,可能还需要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 reload #重新加载