1、安装
yum install nginx
2、使用 nginx 命令
- 查看nginx状态
systemctl status nginx
- 启动服务
systemctl start nginx
- 停止服务
systemctl stop nginx
- 重启服务
systemctl restart nginx
- 修改配置后重载
systemctl reload nginx
3、nginx 常用目录
路径 | 说明 |
/etc/nginx/ | 保存Nginx设置文件的目录 |
/etc/nginx/nginx.conf | 主配置文件 |
/var/log/nignx/ | 日志文件目录 |
/usr/share/nginx/html/ | 对外公开的html |
/etc/nginx/conf.d/default.conf | 默认配置文件 (该配置文件被nginx.conf所引用) |