From 76d34d2a1cfacad1ea8e4dfae034345df90c8c3a Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 12 Jan 2023 17:42:49 +0100 Subject: [PATCH] Note quoting issue --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 16f31e02..86007b3c 100644 --- a/README.md +++ b/README.md @@ -99,9 +99,11 @@ You can specialize the default Traefik rules by setting custom labels on the con ``` labels: - traefik.http.routers.hey.rule: 'Host(`app.hey.com`)' + traefik.http.routers.hey.rule: '''Host(`app.hey.com`)''' ``` +(Note: The extra quotes are needed to ensure the rule is passed in correctly!) + This allows you to run multiple applications on the same server sharing the same Traefik instance and port. See https://doc.traefik.io/traefik/routing/routers/#rule for a full list of available routing rules.