diff --git a/docker-stack.yml.template b/docker-stack.yml.template index bac0f9f..f605aa5 100644 --- a/docker-stack.yml.template +++ b/docker-stack.yml.template @@ -18,6 +18,6 @@ services: - traefik.enable=true - traefik.http.routers.static.entrypoints=websecure - traefik.http.services.static.loadbalancer.server.port=80 - - "traefik.http.routers.static.rule=(Host(`pim.kunis.nl`) || Host(`pim.kun.is`))" + - "traefik.http.routers.static.rule=(Host(`pim.kunis.nl`) || Host(`pim.kun.is`) || Host(`concourse.pim.kunis.nl`))" - traefik.http.routers.static.tls=true - traefik.http.routers.static.tls.certresolver=letsencrypt diff --git a/nginx.conf b/nginx.conf index 33d68cb..2a0de85 100644 --- a/nginx.conf +++ b/nginx.conf @@ -21,3 +21,8 @@ server { server_name pim.kunis.nl; return 301 https://pim.kun.is$request_uri; } + +server { + server_name concourse.pim.kunis.nl; + return 301 https://ci.kun.is$request_uri; +}