查看nginx配置文件路径和资源文件路径的方法


Posted in Servers onMarch 31, 2021

查看nginx配置文件路径

通过 nginx -t

nginx -t命令的原始作用是用来验证nginx配置文件格式和配置是否存在异常,通过该命令会输出nginx的配置文件的路径和验证结果,在输出结果中就可以找到当前的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的配置文件在 /etc/nginx/nginx.conf这个文件夹下

通过 ps -ef|grep nginx

如果在nginx启动的过程中显式的配置了nginx配置文件的加载路径,通过这样的方式就可以很简单的看到当前的配置文件加载路径

通过 locate 命令来进行查找

如果在服务器中有安装locate命令的话,可以通过 locate nginx.conf 这个命令来进行查找,但是如果存在多个nginx.conf 文件的时候,就很难判断到底加载的是哪一个ngxin配置文件

通过 nginx -V 命令来进行查找

通过nginx -V命令可以看到安装时的所有配置信息,通过查找里面的 --conf-path 这个配置信息,可以找到对应的配置文件的路径,如下所示:

nginx -V

nginx version: nginx/1.12.2
built by gcc 8.2.1 20180905 (Red Hat 8.2.1-3) (GCC) 
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --add-module=/usr/local/src/headers-more-nginx-module-0.33 --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 --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

查看nginx资源文件路径

通过 nginx -V 命令

通过nginx -V 命令,然后查找命令中返回的 --prefix= 配置,该配置对应的路径便为nginx的资源文件的路径

到此这篇关于查看nginx配置文件路径和资源文件路径的方法的文章就介绍到这了,更多相关nginx配置文件路径内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Servers 相关文章推荐
Nginx同一个域名配置多个项目的实现方法
Mar 31 Servers
nginx对http请求处理的各个阶段详析
Mar 31 Servers
Nginx访问日志及错误日志参数说明
Mar 31 Servers
nginx proxy_cache 缓存配置详解
Mar 31 Servers
Nginx的反向代理实例详解
Mar 31 Servers
Nginx代理同域名前后端分离项目的完整步骤
Mar 31 Servers
Nginx防盗链与服务优化配置的全过程
Jan 18 Servers
Win Server2016远程桌面如何允许多用户同时登录
Jun 10 Servers
Linux服务器离线安装 nginx的详细步骤
Jun 16 Servers
TaiShan 200服务器安装Ubuntu 18.04的图文教程
Jun 28 Servers
Zabbix对Kafka topic积压数据监控的解决方案
Jul 07 Servers
nginx里的rewrite跳转的实现
Mar 31 #Servers
nginx基于域名,端口,不同IP的虚拟主机设置的实现
Mar 31 #Servers
Nginx设置日志打印post请求参数的方法
Mar 31 #Servers
nginx 多个location转发任意请求或访问静态资源文件的实现
nginx简单配置多个server的方法
nginx proxy_cache 缓存配置详解
Nginx搭建rtmp直播服务器实现代码
Mar 31 #Servers
You might like
PHP文件上传实例详解!!!
2007/01/02 PHP
PHP引用(&)各种使用方法实例详解
2014/03/20 PHP
php使用glob函数快速查询指定目录文件的方法
2014/11/15 PHP
windows下的WAMP环境搭建图文教程(推荐)
2017/07/27 PHP
PHP标准库(PHP SPL)详解
2019/03/16 PHP
jQuery插件实现屏蔽单个元素使用户无法点击
2013/04/12 Javascript
在Iframe中获取父窗口中表单的值(示例代码)
2013/11/22 Javascript
jQuery判断对象是否存在的方法
2015/02/05 Javascript
AngularJS ng-mousedown 指令
2016/08/02 Javascript
jQuery插件HighCharts绘制2D柱状图、折线图的组合双轴图效果示例【附demo源码下载】
2017/03/09 Javascript
JS分页的实现(同步与异步)
2017/09/16 Javascript
浅析node应用的timing-attack安全漏洞
2018/02/28 Javascript
Vue 页面跳转不用router-link的实现代码
2018/04/12 Javascript
vue中动态设置meta标签和title标签的方法
2018/07/11 Javascript
jquery获取img的src值实例介绍
2019/01/16 jQuery
JS隐藏号码中间4位代码实例
2019/04/09 Javascript
怎样使你的 JavaScript 代码简单易读(推荐)
2019/04/16 Javascript
js实现图片粘贴到网页
2019/12/06 Javascript
在Vue中使用antv的示例代码
2020/06/29 Javascript
Nodejs环境实现socket通信过程解析
2020/07/03 NodeJs
js实现无缝轮播图插件封装
2020/07/31 Javascript
对于Python的Django框架使用的一些实用建议
2015/04/03 Python
在Python中操作时间之mktime()方法的使用教程
2015/05/22 Python
Django admin禁用编辑链接和添加删除操作详解
2019/11/15 Python
python实现四人制扑克牌游戏
2020/04/22 Python
Django 解决新建表删除后无法重新创建等问题
2020/05/21 Python
Python selenium爬虫实现定时任务过程解析
2020/06/08 Python
Keras中的两种模型:Sequential和Model用法
2020/06/27 Python
Django自定义YamlField实现过程解析
2020/11/11 Python
python 发送get请求接口详解
2020/11/17 Python
详解python的xlwings库读写excel操作总结
2021/02/26 Python
香港最大的洋酒零售连锁店:屈臣氏酒窖(Watson’s Wine)
2018/12/10 全球购物
叙述DBMS对数据控制功能有哪些
2016/06/12 面试题
不打扫卫生检讨书
2014/02/12 职场文书
ObjectMapper 如何忽略字段大小写
2021/06/29 Java/Android
Sleuth+logback 设置traceid 及自定义信息方式
2021/07/26 Java/Android