查看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优化服务之网页压缩的实现方法
Mar 31 Servers
解析在浏览器地址栏输入一个URL后发生了什么
Jun 21 Servers
总结高并发下Nginx性能如何优化
Nov 01 Servers
Kubernetes控制节点的部署
Apr 01 Servers
Consul在linux环境的集群部署
Apr 08 Servers
Windows Server 2012 修改远程默认端口3389的方法
Apr 28 Servers
Nginx限流和黑名单配置
May 20 Servers
windows server 2016 域环境搭建的方法步骤(图文)
Jun 25 Servers
windows系统安装配置nginx环境
Jun 28 Servers
Apache自带的ab压力测试工具的实现
Jul 23 Servers
Apache SkyWalking 监控 MySQL Server 实战解析
Sep 23 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数组相加 array(“a”)+array(“b”)结果还是array(“a”)
2012/09/19 PHP
PHP 正则表达式之正则处理函数小结(preg_match,preg_match_all,preg_replace,preg_split)
2012/10/05 PHP
配置php.ini实现PHP文件上传功能
2014/11/27 PHP
php+resumablejs实现的分块上传 断点续传功能示例
2017/04/18 PHP
php实现的错误处理封装类实例
2017/06/20 PHP
php脚本守护进程原理与实现方法详解
2017/07/20 PHP
Jquery replace 字符替换实现代码
2010/12/02 Javascript
JS获取图片实际宽高及根据图片大小进行自适应
2013/08/11 Javascript
JS调用打印机功能简单示例
2016/11/28 Javascript
JS实现图片高斯模糊切换效果的焦点图实例
2017/01/21 Javascript
JSONP跨域请求
2017/03/02 Javascript
详解webpack 多入口配置
2017/06/16 Javascript
基于vue配置axios的方法步骤
2017/11/09 Javascript
JS基于for语句编写的九九乘法表示例
2018/01/04 Javascript
layui table 复选框跳页后再回来保持原来选中的状态示例
2019/10/26 Javascript
JS关闭子窗口并且刷新上一个窗口的实现示例
2020/03/10 Javascript
jquery.validate自定义验证用法实例分析【成功提示与择要提示】
2020/06/06 jQuery
快速解决Vue、element-ui的resetFields()方法重置表单无效的问题
2020/08/12 Javascript
如何使用JavaScript实现无缝滚动自动播放轮播图效果
2020/08/20 Javascript
python flask中静态文件的管理方法
2018/03/20 Python
对python 匹配字符串开头和结尾的方法详解
2018/10/27 Python
Python实现删除排序数组中重复项的两种方法示例
2019/01/31 Python
Python Tkinter模块 GUI 可视化实例
2019/11/20 Python
Saucony澳大利亚官网:美国跑鞋品牌,运动鞋中的劳斯莱斯
2018/05/05 全球购物
法国在线药房:Shop Pharmacie
2019/11/26 全球购物
什么是聚集索引和非聚集索引
2012/01/17 面试题
在Ajax应用中信息是如何在浏览器和服务器之间传递的
2016/05/31 面试题
受欢迎的大学生自我评价
2013/12/05 职场文书
学生打架检讨书大全
2014/01/23 职场文书
行政助理的岗位职责
2014/02/18 职场文书
机关工会开展学习雷锋活动总结
2014/03/01 职场文书
合作意向书范本
2014/03/31 职场文书
交通事故赔偿协议书
2014/10/16 职场文书
mysql部分操作
2021/04/05 MySQL
Python Django框架介绍之模板标签及模板的继承
2021/05/27 Python
Redis中有序集合的内部实现方式的详细介绍
2022/03/16 Redis