From 7ef6f8281c204de21a997b2a8cf93318526ee02f Mon Sep 17 00:00:00 2001 From: chagai95 <31655082+chagai95@users.noreply.github.com> Date: Sat, 23 Mar 2024 15:39:31 +0100 Subject: [PATCH] Change dots with dashes for the router name I think a name with dots for a router might cause problems with the docker labels at the least and in general is just not the convention, I think? --- templates/provider.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/provider.yml.j2 b/templates/provider.yml.j2 index 7e5ad94..795a12e 100644 --- a/templates/provider.yml.j2 +++ b/templates/provider.yml.j2 @@ -10,7 +10,7 @@ http: routers: {% for domain in devture_traefik_additional_domains_to_obtain_certificates_for %} - {{ domain }}-dummy: + {{ domain|replace(".", "-") }}-dummy: rule: Host(`{{ domain }}`) service: noop@internal entryPoints: {{ devture_traefik_additional_domains_to_obtain_certificates_for_entryPoints | to_json }}