mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
c429488738
* [FEATURE] Support writing logs in a file. * Add documentation about logs file path. * Rename logs_level and logs_file_path into log_level and log_file_path. * Update BREAKING.md Fixes #338 Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
29 lines
1.3 KiB
Go
29 lines
1.3 KiB
Go
package schema
|
|
|
|
// Configuration object extracted from YAML configuration file.
|
|
type Configuration struct {
|
|
Host string `mapstructure:"host"`
|
|
Port int `mapstructure:"port"`
|
|
TLSCert string `mapstructure:"tls_cert"`
|
|
TLSKey string `mapstructure:"tls_key"`
|
|
|
|
LogLevel string `mapstructure:"log_level"`
|
|
LogFilePath string `mapstructure:"log_file_path"`
|
|
|
|
// This secret is used by the identity validation process to forge JWT tokens
|
|
// representing the permission to proceed with the operation.
|
|
JWTSecret string `mapstructure:"jwt_secret"`
|
|
DefaultRedirectionURL string `mapstructure:"default_redirection_url"`
|
|
GoogleAnalyticsTrackingID string `mapstructure:"google_analytics"`
|
|
|
|
AuthenticationBackend AuthenticationBackendConfiguration `mapstructure:"authentication_backend"`
|
|
Session SessionConfiguration `mapstructure:"session"`
|
|
|
|
TOTP *TOTPConfiguration `mapstructure:"totp"`
|
|
DuoAPI *DuoAPIConfiguration `mapstructure:"duo_api"`
|
|
AccessControl AccessControlConfiguration `mapstructure:"access_control"`
|
|
Regulation *RegulationConfiguration `mapstructure:"regulation"`
|
|
Storage StorageConfiguration `mapstructure:"storage"`
|
|
Notifier *NotifierConfiguration `mapstructure:"notifier"`
|
|
}
|