配置文件概述

配置文件有问题,会导致nginx服务的启动/重启失败。比如就是在编写gerrit.conf最后少写了一个},导致我的wordpress突然打不开,把我整疯了!

配置文件个个击破

server_name

https://www.iteye.com/blog/xiaoxiaoher-2442025
其实这个server_name只针对本地访问有用,在/etc/hosts文件里配置127.0.0.1或者本地的远程ip与server_name,即可在本地通过server_name去访问服务。

location

https://hqidi.com/95.html
[https://cloud.tencent.com/developer/article/2071901?areaSource=102001.14&traceId=gi6bZNzy_9xycgMEdujXu](https://cloud.tencent.com/developer/article/2071901?areaSource=102001.14&traceId=gi6bZNzy_9xycgMEdujXu)

  • proxy_pass后面带/与不带斜杠的区别
    https://www.cnblogs.com/zt007/p/17045758.html
    端口后面有/时,nginx最后匹配的网址是 proxy_pass的内容加上path2(location的后缀)
    端口后面没有/时,nginx最后匹配的网址是 proxy_pass的内容加上path1+path2(location及其后缀的内容)

https://blog.csdn.net/weixin_42116238/article/details/131960826 (作了详细的对比)


0 条评论

发表回复

您的电子邮箱地址不会被公开。