2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-25 11:55:41 +00:00

docs: add note about path prefix matching behavior for HTTPRoute config ()

* Add note about path prefix matching behavior for HTTPRoute config

* Update website/content/docs/connect/gateways/api-gateway/configuration/http-route.mdx

Co-authored-by: trujillo-adam <47586768+trujillo-adam@users.noreply.github.com>

---------

Co-authored-by: trujillo-adam <47586768+trujillo-adam@users.noreply.github.com>
This commit is contained in:
Nathan Coleman 2023-06-23 18:07:53 -04:00 committed by GitHub
parent 94eb36b775
commit 5244ede957
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -533,6 +533,11 @@ Specifies the HTTP method to match.
Specifies type of match for the path: `"exact"`, `"prefix"`, or `"regex"`.
If set to `prefix`, Consul uses simple string matching to identify incoming request prefixes. For example, if the route is configured to match incoming requests to services prefixed with `/dev`, then the gateway would match requests to `/dev-` and `/deviate` and route to the upstream.
This deviates from the
[Kubernetes Gateway API specification](https://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io%2fv1beta1.PathMatchType), which matches on full path elements. In the previous example, _only_ requests to `/dev` or `/dev/` would match.
#### Values
- Default: none