nginx -t 未加载 /etc/nginx/conf.d/nginx.conf
时间: 2023-09-30 19:02:03 浏览: 183
Nginx conf配置文件详解
这个错误通常出现在你执行 `nginx -t` 时,nginx 配置文件路径不正确或者文件不存在。可能是你的 nginx 配置文件路径不同于 `/etc/nginx/conf.d/nginx.conf`,你可以通过指定 `-c` 参数来指定正确的配置文件路径,例如:
```
nginx -t -c /path/to/nginx.conf
```
如果你确认 nginx 配置文件存在于 `/etc/nginx/conf.d/nginx.conf`,那么可能是你的 nginx 安装出了问题,你可以尝试重新安装 nginx。
阅读全文