web - nginx location 搜索算法问题!?
问题描述
先贴出我的server配置:
server { listen 80; server_name xxx; # 1 location = /favicon.ico {root /home/www-data/static;rewrite (.*) /img/designs/admin-favicon.ico; } #2 location = /robots.txt {root /home/www-data/static;rewrite (.*) /admin-robots.txt; } # 3 location / {proxy_pass_header Server;proxy_set_header Host $http_host;proxy_redirect off;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Scheme $scheme;proxy_pass http://127.0.0.1:22222; }}
官方给出的location搜索路径优先级和算法描述如下:
To find location matching a given request, nginx first checks locations defined using the prefix strings (prefix locations). Among them, the location with the longest matching prefix is selected and remembered. Then regular expressions are checked, in the order of their appearance in the configuration file. The search of regular expressions terminates on the first match, and the corresponding configuration is used. If no match with a regular expression is found then the configuration of the prefix location remembered earlier is used.
按照我的理解,Nginx搜索的时候算法应该是这样的:
按照请求前缀搜索location最长普通前缀匹配(如果有=修饰符,则直接匹配该location,如果有^~修饰符,则直接使用该location),记住最长匹配location。 继续按照配置顺序搜索正则匹配,如果有,则直接匹配第一个匹配到的location,否则使用普通最长location也就说,按照我的配置,浏览器请求/favicon.ico的时候,应该是直接精准匹配到 1 才对啊,可是每次都匹配到 3。这里请教一下各位,我对Nginx location的理解有没有偏差?然后为什么我的配置会是这样的结果?
问题解答
回答1:按照楼主的方法配置了一下,我这里是可以进到# 1的。我觉得可能是CDN缓存的问题。楼主试试别的文件rewrite或者在没有CDN的环境下试试。
相关文章:
1. python - 在使用Pycharm时经常看到如下的样式,小括号里红色的部分是什么意思呢?2. android - react-native 的headless.js Java API 的代码怎么使用?3. javascript - html5的data属性怎么指定一个function函数呢?4. javascript - Express 和 request 如何代理远程图片?5. angular.js - angular2 有什么cool的loading组件么?6. mac连接阿里云docker集群,已经卡了2天了,求问?7. python - Scrapy存在内存泄漏的问题。8. javascript - 移动端粘贴事件,onpaste事件在app中无效,在app中怎么监测到粘贴事件9. javascript - 你们怎样实现前端分页的?10. javascript - 原生canvas中如何获取到触摸事件的canvas内坐标?
