You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matchers can be a regex or a string. If a regex is used, you can use the subcaptures in your forwarding url by denoting them with a `$`.
21
20
22
-
Right now if more than one matcher matches any given route, it throws an exception for an ambiguous match. This will probably change later. If no match is found, the call is forwarded to your application.
21
+
Rules can be a regex or a string. If a regex is used, you can use the subcaptures in your forwarding url by denoting them with a `$`.
22
+
23
+
Right now if more than one rule matches any given route, it throws an exception for an ambiguous match. This will probably change later. If no match is found, the call is forwarded to your application.
23
24
24
25
Below is an example for configuring the middleware:
25
26
@@ -43,7 +44,8 @@ end
43
44
run app
44
45
```
45
46
46
-
reverse_proxy_options sets global options for all reverse proxies. Available options are:
47
+
`reverse_proxy_options` sets global options for all reverse proxies. Available options are:
48
+
47
49
*`:preserve_host` Set to false to omit Host headers
0 commit comments