From 765cd015195c4e3174177de7d5507ceda0c3ca4d Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Mon, 3 Feb 2025 17:52:10 +0100 Subject: [PATCH] Enable traefik dashboard in insecure mode --- roles/traefik.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/traefik.nix b/roles/traefik.nix index 3a40d2d..3ca8de7 100644 --- a/roles/traefik.nix +++ b/roles/traefik.nix @@ -62,12 +62,17 @@ services.traefik = { enable = true; + environmentFiles = [ config.sops.templates."traefik.env".path ]; staticConfigOptions = { + # FIXME: Remove this later log.level = "DEBUG"; + # FIXME: This is insecure + api.insecure = true; + entryPoints = { web = { address = ":80";