From 8b72b206ce832d09eabca2a9c6b8973b484c8c69 Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 4 Feb 2025 21:27:02 +0100 Subject: [PATCH] fix: correct host proxy. always try before commit --- modules/services/authentik.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/authentik.nix b/modules/services/authentik.nix index 3784132..158122d 100644 --- a/modules/services/authentik.nix +++ b/modules/services/authentik.nix @@ -108,7 +108,7 @@ in (lib.mkIf cfg.proxy.enable { services.caddy = with cfg.proxy; { virtualHosts."${subdomain}.${domain}".extraConfig = '' - reverse_proxy http://host:9000 + reverse_proxy http://${host}:9000 import cloudflare_${domain} ''; };