From ffa060ce56d6b8f24022a7d6c9a58e3c27e5f4c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20J=C3=A4gle?= Date: Wed, 3 Aug 2016 18:50:13 +0200 Subject: [PATCH] Fix basic docs for configuration of multiple rules (#576) --- docs/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.md b/docs/basics.md index 97aae8aa9..df967f308 100644 --- a/docs/basics.md +++ b/docs/basics.md @@ -127,7 +127,7 @@ In TOML file, you can use multiple routes: [frontends.frontend3.routes.test_1] rule = "Host:test3.localhost" [frontends.frontend3.routes.test_2] - rule = "Host:Path:/test" + rule = "Path:/test" ``` Here `frontend3` will forward the traffic to the `backend2` if the rules `Host:test3.localhost` **AND** `Path:/test` are matched.