From 45ec1b2bdcb566c1d97c933bc7176f3e569fbd45 Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Fri, 6 Feb 2026 17:10:15 +0100 Subject: [PATCH] Disable file provider for TLS certificates in Traefik configuration --- nix-system-configs/traefik/traefik-config.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nix-system-configs/traefik/traefik-config.nix b/nix-system-configs/traefik/traefik-config.nix index 300153d..2e93c8d 100644 --- a/nix-system-configs/traefik/traefik-config.nix +++ b/nix-system-configs/traefik/traefik-config.nix @@ -166,11 +166,11 @@ in { format = "json"; }; - # Enable file provider for TLS certificates - providers.file = { - directory = "${config.services.traefik.dataDir}/conf"; - watch = true; - }; + # Enable file provider for TLS certificates - This needs to re-watched to determine if we should add entries here or there + #providers.file = { + # directory = "${config.services.traefik.dataDir}/conf"; + # watch = true; + #}; api.dashboard = true; # Access the Traefik dashboard on :8080 of your server