From 4a2973226e3213bd118d4b5c97b656f70d9ec5c4 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 6 Jan 2019 00:28:21 +0100 Subject: [PATCH] Changed the traefik example to actually work. --- Proxy-examples.md | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Proxy-examples.md b/Proxy-examples.md index 09f39ba..76c09bf 100644 --- a/Proxy-examples.md +++ b/Proxy-examples.md @@ -82,15 +82,11 @@ server { ## Traefik (docker-compose example) ```traefik - labels: - - 'traefik.frontend.rule=Host:vault.example.local' - - 'traefik.docker.network=traefik' - - 'traefik.port=80' - - 'traefik.enable=true' - - 'traefik.web.frontend.rule=Host:vault.example.local' - - 'traefik.web.port=80' - - 'traefik.hub.frontend.rule=Path:/notifications/hub' - - 'traefik.hub.port=3012' - - 'traefik.negotiate.frontend.rule=Path:/notifications/hub/negotiate' - - 'traefik.negotiate.port=80' +labels: + - traefik.docker.network=traefik + - traefik.enable=true + - traefik.web.frontend.rule=Host:bitwarden.domain.tld + - traefik.web.port=80 + - traefik.hub.frontend.rule=Host:bitwarden.domain.tld;Path:/notifications/hub + - traefik.hub.port=3012 ```