This is an automated email from the ASF dual-hosted git repository.
wenming pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 8d33cf07 docs: update http[].match.exprs any -> all (#2270)
8d33cf07 is described below
commit 8d33cf07a863c7b41fc968db0c9c5b296f317bb4
Author: Aurelia <[email protected]>
AuthorDate: Fri Nov 8 03:40:44 2024 +0100
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 76a434e1..bf6cd9f1 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`.
|