From 8d33cf07a863c7b41fc968db0c9c5b296f317bb4 Mon Sep 17 00:00:00 2001 From: Aurelia Date: Fri, 8 Nov 2024 03:40:44 +0100 Subject: [PATCH] docs: update http[].match.exprs any -> all (#2270) --- docs/en/latest/references/apisix_route_v2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/latest/references/apisix_route_v2.md b/docs/en/latest/references/apisix_route_v2.md index 76a434e15e..bf6cd9f142 100644 --- a/docs/en/latest/references/apisix_route_v2.md +++ b/docs/en/latest/references/apisix_route_v2.md @@ -49,7 +49,7 @@ The table below describes each of the attributes in the spec. The fields `apiVer | http[].match.hosts | array | List of hosts to match the Route with. The Route will be used if any one of the hosts is matched. | | http[].match.methods | array | List of HTTP methods (`GET`, `POST`, `PUT`, `DELETE`, `PATCH`, `HEAD`, `OPTIONS`, `CONNECT`, `TRACE`) to match the Route with. The Route will be used if any one of the methods is matched. | | http[].match.remoteAddrs | array | List of IP addresses (CIDR format) to match the Route with. The Route will be used if any one of the IP address is matched. | -| http[].match.exprs | array | List of expressions to match the Route with. The Route will be used if any one of the expression is matched. | +| http[].match.exprs | array | List of expressions to match the Route with. The Route will be used if all of the expressions are matched. | | http[].match.exprs[].subject | object | Subject for the expression. | | http[].match.exprs[].subject.scope | string | Scope of the subject. Can be one of `Header`, `Query`, `Cookie`, or `Path`. | | http[].match.exprs[].subject.name | string | Subject name. Can be empty when the scope is `Path`. |