From b92948906e1e0a9dcf739ebee544da5647b2117b Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 28 Aug 2023 18:36:49 -0700 Subject: [PATCH] Define ports --- authentik-container.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/authentik-container.nix b/authentik-container.nix index 1178020..42fc8ff 100644 --- a/authentik-container.nix +++ b/authentik-container.nix @@ -33,6 +33,17 @@ in { redis = mkOption { type = str; }; }; + ports = { + http = mkOption { + type = port; + default = 5030; + }; + https = mkOption { + type = port; + default = 5031; + }; + }; + uids = { authentik = mkOption { type = int;