我是靠谱客的博主 默默薯片,最近开发中收集的这篇文章主要介绍查找 Nginx 配置文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

nginx -tnginx -V 都会打印出默认的 nginx 配置文件路径。

$ nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

$ nginx -V
nginx version: nginx/1.18.0 (Ubuntu)
built with OpenSSL 1.1.1f  31 Mar 2020
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf ...

如果需要,可以通过以下方式获取配置文件:

$ nginx -V 2>&1 | grep -o '--conf-path=(.*conf)' | cut -d '=' -f2
/etc/nginx/nginx.conf

即使您加载了其他配置文件,它们仍会打印出默认值。

ps aux 将显示当前加载的 nginx 配置文件。

$ ps aux
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root        11  0.0  0.2  31720  2212 ?        Ss   Jul23   0:00 nginx: master process nginx -c /app/nginx.conf

因此,您实际上可以通过以下方式获取配置文件,例如:

$ ps aux | grep "[c]onf" | awk '{print $(NF)}'
/app/nginx.conf

最后

以上就是默默薯片为你收集整理的查找 Nginx 配置文件的全部内容,希望文章能够帮你解决查找 Nginx 配置文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部