nginx快速查看配置文件的方法
程序员文章站
2022-03-08 08:46:07
...
nginx的配置放在nginx.conf文件中,一般我们可以使用以下命令查看服务器中存在的nginx.conf文件。
locate nginx.conf /usr/local/etc/nginx/nginx.conf /usr/local/etc/nginx/nginx.conf.default...
如果服务器中存在多个nginx.conf文件,我们并不知道实际上调用的是哪个配置文件,因此我们必须找到实际调用的配置文件才能进行修改。
查看nginx实际调用的配置文件
1.查看nginx路径
ps aux|grep nginx root 352 0.0 0.0 2468624 924 ?? S 10:43上午 0:00.08 nginx: worker process root 232 0.0 0.0 2459408 532 ?? S 10:43上午 0:00.02 nginx: master process /usr/local/opt/nginx/bin/nginx -g daemon off; root 2345 0.0 0.0 2432772 640 s000 S+ 1:01下午 0:00.00 grep nginx
nginx的路径为:/usr/local/opt/nginx/bin/nginx
2.查看nginx配置文件路径
使用nginx的 -t 参数进行配置检查,即可知道实际调用的配置文件路径及是否调用有效。
/usr/local/opt/nginx/bin/nginx -t nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
测试可知,nginx的配置文件路径为:/usr/local/etc/nginx/nginx.conf 且调用有效。
nginx的配置放在nginx.conf文件中,一般我们可以使用以下命令查看服务器中存在的nginx.conf文件。
locate nginx.conf /usr/local/etc/nginx/nginx.conf /usr/local/etc/nginx/nginx.conf.default...
如果服务器中存在多个nginx.conf文件,我们并不知道实际上调用的是哪个配置文件,因此我们必须找到实际调用的配置文件才能进行修改。
查看nginx实际调用的配置文件
1.查看nginx路径
ps aux|grep nginx root 352 0.0 0.0 2468624 924 ?? S 10:43上午 0:00.08 nginx: worker process root 232 0.0 0.0 2459408 532 ?? S 10:43上午 0:00.02 nginx: master process /usr/local/opt/nginx/bin/nginx -g daemon off; root 2345 0.0 0.0 2432772 640 s000 S+ 1:01下午 0:00.00 grep nginx
nginx的路径为:/usr/local/opt/nginx/bin/nginx
2.查看nginx配置文件路径
使用nginx的 -t 参数进行配置检查,即可知道实际调用的配置文件路径及是否调用有效。
/usr/local/opt/nginx/bin/nginx -t nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
测试可知,nginx的配置文件路径为:/usr/local/etc/nginx/nginx.conf 且调用有效。
本文讲解了nginx快速查看配置文件的方法 ,更多相关内容请关注。
相关推荐:
mysql secure-file-priv选项问题的解决方法
以上就是nginx快速查看配置文件的方法的详细内容,更多请关注其它相关文章!
下一篇: php使用正则去除宽高样式
推荐阅读
-
使用Mysql5.x以上版本出现报错#1929 Incorrect datetime value: '' for column 'createtime'的快速解决方法
-
ipad版qq音乐怎么删除歌曲?有什么快速批量方便的方法
-
Android中快速便捷的实现圆角按钮方法详解
-
移动端seo优化操作方法(手机网站快速排名的软件)
-
终端命令查看TensorFlow版本号及路径的方法
-
PHP连接Nginx服务器并解析Nginx日志的方法
-
jquery dialog open后,服务器端控件失效的快速解决方法
-
快速解决jquery之get缓存问题的最简单方法介绍
-
Nginx跨域使用字体文件的配置方法
-
nginx php-fpm环境中chroot功能的配置使用方法