diff --git a/docker-stack.yml.template b/docker-stack.yml.template index e6e7946..f6f035d 100644 --- a/docker-stack.yml.template +++ b/docker-stack.yml.template @@ -26,6 +26,6 @@ services: - traefik.http.routers.redirects.entrypoints=websecure - traefik.http.routers.redirects.service=static - - "traefik.http.routers.redirects.rule=(Host(`pim.kunis.nl`) || Host(`concourse.pim.kunis.nl`) || Host(`rss.pim.kunis.nl`) || Host(`md.pim.kunis.nl`) || Host(`cloud.pim.kunis.nl`) || Host(`dav.pim.kunis.nl`) || Host(`git.pim.kunis.nl`))" + - "traefik.http.routers.redirects.rule=(Host(`pim.kunis.nl`) || Host(`concourse.pim.kunis.nl`) || Host(`rss.pim.kunis.nl`) || Host(`md.pim.kunis.nl`) || Host(`cloud.pim.kunis.nl`) || Host(`dav.pim.kunis.nl`) || Host(`git.pim.kunis.nl`) || Host(`traefik.pim.kunis.nl`))" - traefik.http.routers.redirects.tls=true - traefik.http.routers.redirects.tls.certresolver=letsencrypt diff --git a/nginx.conf b/nginx.conf index f26c10e..1e6211a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -51,3 +51,8 @@ server { server_name git.pim.kunis.nl; return 301 https://git.kun.is$request_uri; } + +server { + server_name traefik.pim.kunis.nl; + return 301 https://traefik.kun.is$request_uri; +}