From d76b50bf08bf40bf9145cacbefcb74b5f4eaccfc Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Wed, 12 Jul 2023 18:10:10 +0200 Subject: [PATCH] redirect latex.pim.kunis.nl --- docker-stack.yml.template | 2 +- nginx.conf | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docker-stack.yml.template b/docker-stack.yml.template index f6f035d..359ac58 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`) || Host(`traefik.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`) || Host(`latex.kunis.nl`))" - traefik.http.routers.redirects.tls=true - traefik.http.routers.redirects.tls.certresolver=letsencrypt diff --git a/nginx.conf b/nginx.conf index 1e6211a..daa7ca2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -56,3 +56,8 @@ server { server_name traefik.pim.kunis.nl; return 301 https://traefik.kun.is$request_uri; } + +server { + server_name latex.pim.kunis.nl; + return 301 https://latex.kun.is$request_uri; +}