From 53af2e38e6d22d4d81e189d9624dbc1efabc974e Mon Sep 17 00:00:00 2001 From: Wave <86343914+Wave6677@users.noreply.github.com> Date: Sat, 11 May 2024 10:27:07 +0000 Subject: [PATCH] Update Traefik Example A recent update to Traefik has made a breaking change with this configuration where the three piped domains can not be separated by commas anymore, instead the proper syntax is now an individual Host variable for each domain separated by && or ||, in this example I've opted for || as that works on my machine. Documentation for this syntax can be found here: https://doc.traefik.io/traefik/v3.0/routing/routers/#rule --- content/docs/self-hosting/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/self-hosting/index.md b/content/docs/self-hosting/index.md index bc7b48a..9bfb0f0 100644 --- a/content/docs/self-hosting/index.md +++ b/content/docs/self-hosting/index.md @@ -86,7 +86,7 @@ This must be applied on the nginx container. ``` labels: - "traefik.enable=true" - - "traefik.http.routers.piped.rule=Host(`hostname`,`hostname2`,`hostname3`)" + - "traefik.http.routers.piped.rule=Host(`piped.yourdomain.tld`) || Host(`pipedapi.yourdomain.tld`) || Host(`pipedproxy.yourdomain.tld`)" - "traefik.http.routers.piped.entrypoints=web" ```