详细信息参考:http://www.nginx.org/
1、必要软件准备
yum install -y gcc gcc-c++ automake pcre pcre-devel zlip zlib-devel openssl openssl-devel make
2、安装nginx
执行如下命令:
#下载并解压
wget http://nginx.org/download/nginx-1.14.2.tar.gz
tar xvf nginx-1.14.2.tar.gz
cd nginx-1.14.2
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_v2_module --with-http_stub_status_module --with-pcre
#参数解析:http://nginx.org/en/docs/configure.html
# –with-http_stub_status_module:支持 nginx 状态查询
# –with-http_ssl_module:支持 https
# --with-http_v2_module:支持 google 的 spdy
# –with-pcre:为了支持 rewrite 重写功能,必须制定 pcre
#编译并安装
make && make install
3、启动、关闭、重置nginx
#启动nginx:
/usr/local/nginx/sbin/nginx
#检测nginx是否启动成功
[root@ns conf]# curl -s curl -s 127.0.0.1 | grep nginx.com
#关闭nginx:
/usr/local/nginx/sbin/nginx -s stop
#重置:修改配置文件之后,只需要 reload 以下即可
/usr/local/nginx/sbin/nginx -s reload
网友评论