mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
8f05846e21
This implements Webauthn. Old devices can be used to authenticate via the appid compatibility layer which should be automatic. New devices will be registered via Webauthn, and devices which do not support FIDO2 will no longer be able to be registered. At this time it does not fully support multiple devices (backend does, frontend doesn't allow registration of additional devices). Does not support passwordless.
24 lines
1.3 KiB
Go
24 lines
1.3 KiB
Go
package schema
|
|
|
|
// Configuration object extracted from YAML configuration file.
|
|
type Configuration struct {
|
|
Theme string `koanf:"theme"`
|
|
CertificatesDirectory string `koanf:"certificates_directory"`
|
|
JWTSecret string `koanf:"jwt_secret"`
|
|
DefaultRedirectionURL string `koanf:"default_redirection_url"`
|
|
|
|
Log LogConfiguration `koanf:"log"`
|
|
IdentityProviders IdentityProvidersConfiguration `koanf:"identity_providers"`
|
|
AuthenticationBackend AuthenticationBackendConfiguration `koanf:"authentication_backend"`
|
|
Session SessionConfiguration `koanf:"session"`
|
|
TOTP TOTPConfiguration `koanf:"totp"`
|
|
DuoAPI *DuoAPIConfiguration `koanf:"duo_api"`
|
|
AccessControl AccessControlConfiguration `koanf:"access_control"`
|
|
NTP NTPConfiguration `koanf:"ntp"`
|
|
Regulation RegulationConfiguration `koanf:"regulation"`
|
|
Storage StorageConfiguration `koanf:"storage"`
|
|
Notifier *NotifierConfiguration `koanf:"notifier"`
|
|
Server ServerConfiguration `koanf:"server"`
|
|
Webauthn WebauthnConfiguration `koanf:"webauthn"`
|
|
}
|