CentOS7使用yum安装Nginx
Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。
官网地址
1. 添加yum源
1
| rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
|
2. 查看是否添加成功
3. 安装 Nginx
4. 启动 Nginx
1
| systemctl start nginx.service
|
5. 查看 Nginx 状态
1
| systemctl status nginx.service
|
6. 可以通过访问 IP 或域名来查看 Nginx
7. 设置开机自启动
1
| systemctl enable nginx.service
|
8. Nginx 重新加载配置
9. Nginx 重启
1
| systemctl restart nginx.service
|
10. 查看 Nginx 运行状态
11. Nginx 配置
- 全局配置文件:
/etc/nginx/nginx.conf
- 配置文件目录:
/etc/nginx/conf.d/
- 网站默认站点配置:
/etc/nginx/conf.d/default.conf
- 网站文件默认目录:
/usr/share/nginx/html
- 指定配置文件启动:
nginc -c /etc/nginx/nginx.conf