原文网址:https://www.yisu.com/zixun/677737.html
一、查看 nginx 安装目录
ps -ef | grep nginx
二、查看配置文件 nginx.conf 路径
nginx -t
这条命令也可以用于检查配置文件是否正确。
当然也可以使用 find 命令进行文件查找
# 从 / 根目录下查找文件名为 nginx.conf 的文件 find / -name nginx.conf # 从 /etc 目录下查找文件名为 nginx.conf 的文件 find /etc -name nginx.conf
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279427.html