mchtech commented on issue #1785: URL: https://github.com/apache/apisix-ingress-controller/issues/1785#issuecomment-1579098620
We have used nginx as L7 LB about 10 years. There are 1000+ "location" rules in nginx configs. All rules are organtized by regex (`location ~ /regex`). (I don't know why. maybe 'regex location' can guarantee the order of rules and reduce probability of config errors) Because `add priority to the route` is not supported by ingress annotation and risks still exist when using `regex` match in k8s (include ingress-nginx) we refactor all the rules: convert `regex` match to `prefix` and `exact` match, and copy prod-env requests to test cluster to validate them. Thanks for your suggestion. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
