route_match
Last updated
Was this helpful?
Last updated
Was this helpful?
path
String value that will be compared to the :path
header on the incoming request using the chosen .
match_type
Sets the type of string matching to perform on the . Must be one of:
"prefix"
: must match the beginning of the :path
header
"exact"
: must match exactly match the :path
header. (query strings are not included in this match)
"regex"
: is interpreted as a regex that must match the :path
header. (query strings are not included in this match)