From e917a10cc02126bd067112f3e194473a07592011 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 5 Jun 2024 10:09:53 -0700 Subject: [PATCH] Yep, need to specify full URL. --- paris-container.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paris-container.nix b/paris-container.nix index 64c4b39..a0999ad 100644 --- a/paris-container.nix +++ b/paris-container.nix @@ -189,9 +189,9 @@ in { parisLdapEnv = { source-file = pkgs.writeText "paris-ldap-proxy.env" (concatStringsSep "\n" [ - "AUTHENTIK_HOST=${cfg.ldap.authentik-host}" + "AUTHENTIK_HOST=https://${cfg.ldap.authentik-host}" "AUTHENTIK_TOKEN=${readFile cfg.ldap.outpost-token-file}" - "AUTHENTIK_INSECURE=false" + "AUTHENTIK_INSECURE=0" ]); target-file = "/run/paris/ldap.env"; };