mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3d20142292
Providing a GA tracking ID allows administrators to analyze how the portal is used by their users in large environments, i.e., with many users. This will make even more sense when we have users and admins management interfaces.
21 lines
928 B
Go
21 lines
928 B
Go
package schema
|
|
|
|
// Configuration object extracted from YAML configuration file.
|
|
type Configuration struct {
|
|
Port int `yaml:"port"`
|
|
LogsLevel string `yaml:"logs_level"`
|
|
JWTSecret string `yaml:"jwt_secret"`
|
|
DefaultRedirectionURL string `yaml:"default_redirection_url"`
|
|
GoogleAnalyticsTrackingID string `yaml:"google_analytics"`
|
|
|
|
AuthenticationBackend AuthenticationBackendConfiguration `yaml:"authentication_backend"`
|
|
Session SessionConfiguration `yaml:"session"`
|
|
|
|
TOTP *TOTPConfiguration `yaml:"totp"`
|
|
DuoAPI *DuoAPIConfiguration `yaml:"duo_api"`
|
|
AccessControl *AccessControlConfiguration `yaml:"access_control"`
|
|
Regulation *RegulationConfiguration `yaml:"regulation"`
|
|
Storage *StorageConfiguration `yaml:"storage"`
|
|
Notifier *NotifierConfiguration `yaml:"notifier"`
|
|
}
|