From 600902ef5e9d4869806d66b4e2bf6d02f211fac7 Mon Sep 17 00:00:00 2001 From: Rasmus Kjellberg <2277443+kjellberg@users.noreply.github.com> Date: Sun, 12 Mar 2023 07:39:07 +0100 Subject: [PATCH] Update README.md Backticks are handled by `Utils.optionize` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 168bed4c..2427b0e8 100644 --- a/README.md +++ b/README.md @@ -256,12 +256,12 @@ servers: You can specialize the default Traefik rules by setting labels on the containers that are being started: -``` +```yaml labels: - traefik.http.routers.hey.rule: Host(\`app.hey.com\`) + traefik.http.routers.hey.rule: Host(`app.hey.com`) ``` -Note: The escaped backticks are needed to ensure the rule is passed in correctly and not treated as command substitution by Bash! +Note: The backticks are needed to ensure the rule is passed in correctly and not treated as command substitution by Bash! 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.