总结:# 就近原则
优先访问location / 中的root
当直接访问服务器,不加其他路径访问时,并且nginx配置中,含有location /{}配置时,nginx的location会优先匹配到此代码块,会指向此代码块中的root , server中的root, 不会生效。当去掉/ 配置,nginx找不到匹配到的location代码块时候,则会才执行server中的root。----也就是就近原则。
文章链接:https://blog.csdn.net/fengzyf/article/details/102602782
网友评论