Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
Marc 'risson' Schmitt
2025-03-24 21:01:34 +01:00
parent 7fe91339ad
commit 0d0aeab4ee
5 changed files with 209 additions and 0 deletions

View File

@ -7,6 +7,7 @@ type Config struct {
ErrorReporting ErrorReportingConfig `yaml:"error_reporting" env:", prefix=AUTHENTIK_ERROR_REPORTING__"`
Redis RedisConfig `yaml:"redis" env:", prefix=AUTHENTIK_REDIS__"`
Outposts OutpostConfig `yaml:"outposts" env:", prefix=AUTHENTIK_OUTPOSTS__"`
Worker WorkerConfig `yaml:"worker" env:", prefix=AUTHENTIK_WORKER__"`
// Config for core and embedded outpost
SecretKey string `yaml:"secret_key" env:"AUTHENTIK_SECRET_KEY, overwrite"`
@ -77,3 +78,7 @@ type OutpostConfig struct {
type WebConfig struct {
Path string `yaml:"path" env:"PATH, overwrite"`
}
type WorkerConfig struct {
Embedded string `yaml:"embedded" env:"EMBEDDED, overwrite"`
}