 a742331484
			
		
	
	a742331484
	
	
	
		
			
			* make redis settings more consistent Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add support to go Signed-off-by: Jens Langhammer <jens@goauthentik.io> * rewrite url Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix redis connect in wait_for_db Signed-off-by: Jens Langhammer <jens@goauthentik.io> * censor password when logging error Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> * reword docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add redis url generation helper Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
			
				
	
	
		
			75 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package config
 | |
| 
 | |
| type Config struct {
 | |
| 	// Core specific config
 | |
| 	Storage        StorageConfig        `yaml:"storage"`
 | |
| 	LogLevel       string               `yaml:"log_level" env:"AUTHENTIK_LOG_LEVEL, overwrite"`
 | |
| 	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__"`
 | |
| 
 | |
| 	// Config for core and embedded outpost
 | |
| 	SecretKey string `yaml:"secret_key" env:"AUTHENTIK_SECRET_KEY, overwrite"`
 | |
| 
 | |
| 	// Config for both core and outposts
 | |
| 	Debug  bool         `yaml:"debug" env:"AUTHENTIK_DEBUG, overwrite"`
 | |
| 	Listen ListenConfig `yaml:"listen" env:", prefix=AUTHENTIK_LISTEN__"`
 | |
| 
 | |
| 	// Outpost specific config
 | |
| 	// These are only relevant for proxy/ldap outposts, and cannot be set via YAML
 | |
| 	// They are loaded via this config loader to support file:// schemas
 | |
| 	AuthentikHost        string `env:"AUTHENTIK_HOST"`
 | |
| 	AuthentikHostBrowser string `env:"AUTHENTIK_HOST_BROWSER"`
 | |
| 	AuthentikToken       string `env:"AUTHENTIK_TOKEN"`
 | |
| 	AuthentikInsecure    bool   `env:"AUTHENTIK_INSECURE"`
 | |
| }
 | |
| 
 | |
| type RedisConfig struct {
 | |
| 	Host      string  `yaml:"host" env:"HOST, overwrite"`
 | |
| 	Port      int     `yaml:"port" env:"PORT, overwrite"`
 | |
| 	DB        int     `yaml:"db" env:"DB, overwrite"`
 | |
| 	Username  string  `yaml:"username" env:"USERNAME, overwrite"`
 | |
| 	Password  string  `yaml:"password" env:"PASSWORD, overwrite"`
 | |
| 	TLS       bool    `yaml:"tls" env:"TLS, overwrite"`
 | |
| 	TLSReqs   string  `yaml:"tls_reqs" env:"TLS_REQS, overwrite"`
 | |
| 	TLSCaCert *string `yaml:"tls_ca_certs" env:"TLS_CA_CERT, overwrite"`
 | |
| }
 | |
| 
 | |
| type ListenConfig struct {
 | |
| 	HTTP              string   `yaml:"listen_http" env:"HTTP, overwrite"`
 | |
| 	HTTPS             string   `yaml:"listen_https" env:"HTTPS, overwrite"`
 | |
| 	LDAP              string   `yaml:"listen_ldap" env:"LDAP, overwrite"`
 | |
| 	LDAPS             string   `yaml:"listen_ldaps" env:"LDAPS, overwrite"`
 | |
| 	Radius            string   `yaml:"listen_radius" env:"RADIUS, overwrite"`
 | |
| 	Metrics           string   `yaml:"listen_metrics" env:"METRICS, overwrite"`
 | |
| 	Debug             string   `yaml:"listen_debug" env:"DEBUG, overwrite"`
 | |
| 	TrustedProxyCIDRs []string `yaml:"trusted_proxy_cidrs" env:"TRUSTED_PROXY_CIDRS, overwrite"`
 | |
| }
 | |
| 
 | |
| type StorageConfig struct {
 | |
| 	Media StorageMediaConfig `yaml:"media"`
 | |
| }
 | |
| 
 | |
| type StorageMediaConfig struct {
 | |
| 	Backend string            `yaml:"backend" env:"AUTHENTIK_STORAGE__MEDIA__BACKEND"`
 | |
| 	File    StorageFileConfig `yaml:"file"`
 | |
| }
 | |
| 
 | |
| type StorageFileConfig struct {
 | |
| 	Path string `yaml:"path" env:"AUTHENTIK_STORAGE__MEDIA__FILE__PATH"`
 | |
| }
 | |
| 
 | |
| type ErrorReportingConfig struct {
 | |
| 	Enabled     bool    `yaml:"enabled" env:"ENABLED, overwrite"`
 | |
| 	SentryDSN   string  `yaml:"sentry_dsn" env:"SENTRY_DSN, overwrite"`
 | |
| 	Environment string  `yaml:"environment" env:"ENVIRONMENT, overwrite"`
 | |
| 	SendPII     bool    `yaml:"send_pii" env:"SEND_PII, overwrite"`
 | |
| 	SampleRate  float64 `yaml:"sample_rate" env:"SAMPLE_RATE, overwrite"`
 | |
| }
 | |
| 
 | |
| type OutpostConfig struct {
 | |
| 	ContainerImageBase     string `yaml:"container_image_base" env:"CONTAINER_IMAGE_BASE, overwrite"`
 | |
| 	Discover               bool   `yaml:"discover" env:"DISCOVER, overwrite"`
 | |
| 	DisableEmbeddedOutpost bool   `yaml:"disable_embedded_outpost" env:"DISABLE_EMBEDDED_OUTPOST, overwrite"`
 | |
| }
 |