From d4dce5b2504f9b511fc61bbfbd56e02afcd78e2d Mon Sep 17 00:00:00 2001 From: "[information redacted]" <87243354+information-redacted@users.noreply.github.com> Date: Mon, 13 Feb 2023 00:52:13 +0200 Subject: [PATCH] root: fix config load order to include /etc/authentik/config.yml (#4669) --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 45c7ee1f4..9d33a896b 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -18,7 +18,7 @@ var cfg *Config func Get() *Config { if cfg == nil { c := defaultConfig() - c.Setup("./authentik/lib/default.yml", "./local.env.yml") + c.Setup("./authentik/lib/default.yml", "/etc/authentik/config.yml", "./local.env.yml") cfg = c } return cfg