当前位置:   article > 正文

nginx 查找配置文件_查看nginx配置文件位置

查看nginx配置文件位置

由于年代久远或者安装方式差异,可能会忘记nginx配置文件路径,要想找到nginx配置文件,首先要找到nginx命令,然后通过nginx命令找到配置文件路径。

找到nginx命令

使用which nginx,来找到nginx命令路径

[root@VM-0-5-centos sbin]# which nginx
/usr/sbin/nginx

  • 1
  • 2
  • 3

找到配置文件路径

有两种找到配置文件路径方法,第一种查看nginx配置参数,第二种校验配置文件,输出配置文件路径。

查看配置参数方式

[root@VM-0-5-centos sbin]# /usr/sbin/nginx -V
nginx version: nginx/1.16.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
built with OpenSSL 1.1.1c FIPS  28 May 2019 (running with OpenSSL 1.1.1g FIPS  21 Apr 2020)
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

找到conf-path

--conf-path=/etc/nginx/nginx.conf
  • 1

校验配置文件,输出配置文件路径

利用 /usr/sbin/nginx -t 输出配置文件路径

[root@VM-0-5-centos sbin]# /usr/sbin/nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/254372
推荐阅读
相关标签
  

闽ICP备14008679号