Clarify case insensitivity of path and host matching

Matt Holt 2019-11-15 15:54:54 -07:00
parent d9ba43f577
commit c810af65d4

@ -1356,7 +1356,7 @@ Matches requests by Host header.
"host": []
```
Host values can contain wildcards to substitute for one label of the domain name.
Host values can contain wildcards to substitute for one label of the domain name. Host matching is case-insensitive.
##### http.matchers.path
@ -1366,7 +1366,7 @@ Matches requests by request path.
"path": []
```
Paths may contain globular patterns.
Paths may contain globular patterns. Path matching is case-insensitive. If case sensitivity is required, use a path_regexp matcher.
##### http.matchers.path_regexp