美文网首页
nginx server中的root和location的root

nginx server中的root和location的root

作者: 瑀瑀独行_639d | 来源:发表于2021-01-27 01:04 被阅读0次

总结:# 就近原则

优先访问location / 中的root

当直接访问服务器,不加其他路径访问时,并且nginx配置中,含有location /{}配置时,nginx的location会优先匹配到此代码块,会指向此代码块中的root , server中的root, 不会生效。当去掉/ 配置,nginx找不到匹配到的location代码块时候,则会才执行server中的root。----也就是就近原则。

文章链接:https://blog.csdn.net/fengzyf/article/details/102602782

相关文章

网友评论

      本文标题:nginx server中的root和location的root

      本文链接:https://www.haomeiwen.com/subject/jsozzktx.html