环境介绍
系统版本
系统环境默认采用 CentOS Linux release 7.1.1503 (Core)
,
软件获取
官方网站:http://nginx.org
最新稳定版本:nginx-1.8.1.tar.gz
帮助文档:http://nginx.org/en/docs
编译参数说明:http://nginx.org/en/docs/configure.html
软件仓库
yum 仓库包含 centos
官方和 epel
两个安装源
Nginx 安装
安装依赖软件
安装 pcre
12\\ 使用 rewrite 功能yum install pcre pcre-devel安装 openssl
12\\ 如果需要 ssl 支持,不需要可以不安装yum install openssl openssl-devel
安装 nginx
|
|
- –with-http_ssl_module —支持 https
- –with-http_stub_status_module —支持 nginx 状态查询
- –with-pcre —支持 rewrite
nginx启动、停止、重启
启动
现在 nginx 就可以启动,不需要更改任何配置文件。
停止
|
|
Nginx 的停止命令有很多,一般都是通过发送系统信号给 nginx 的主进程来停止 nginx,例如:
重启
|
|
同样可以通过信号来重启 nginx