Nginx具有一系列过滤器,用于确定触发哪些规则以及如何触发。例如
location /abc/ {
proxy_pass http://127.0.0.1:3000/;
proxy_http_version 1.1;
proxy_set_header Connection "";
include /etc/nginx/conf.d/x/cors.conf;
}
在我的应用中,当我点击/ abc /时,nginx会在大约10秒钟后继续将我转发到诸如:8080 / index.html的网址。
我知道,nginx中没有执行此类操作的规则,所以我想知道为什么不遵守我的/ abc规则。
有没有办法让nginx“解释”为什么/如何根据访问来匹配/决定路由流量,以便我可以看到触发了哪个路由规则?