mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
ddea31193b
OpenID connect has become a standard when it comes to authentication and in order to fix a security concern around forwarding authentication and authorization information it has been decided to add support for it. This feature is in beta version and only enabled when there is a configuration for it. Before enabling it in production, please consider that it's in beta with potential bugs and that there are several production critical features still missing such as all OIDC related data is stored in configuration or memory. This means you are potentially going to experience issues with HA deployments, or when restarting a single instance specifically related to OIDC. We are still working on adding the remaining set of features before making it GA as soon as possible. Related to #189 Co-authored-by: Clement Michaud <clement.michaud34@gmail.com>
36 lines
1.4 KiB
Go
36 lines
1.4 KiB
Go
package schema
|
|
|
|
// IdentityProvidersConfiguration represents the IdentityProviders 2.0 configuration for Authelia.
|
|
type IdentityProvidersConfiguration struct {
|
|
OIDC *OpenIDConnectConfiguration `mapstructure:"oidc"`
|
|
}
|
|
|
|
// OpenIDConnectConfiguration configuration for OpenID Connect.
|
|
type OpenIDConnectConfiguration struct {
|
|
// This secret must be 32 bytes long
|
|
HMACSecret string `mapstructure:"hmac_secret"`
|
|
IssuerPrivateKey string `mapstructure:"issuer_private_key"`
|
|
|
|
Clients []OpenIDConnectClientConfiguration `mapstructure:"clients"`
|
|
}
|
|
|
|
// OpenIDConnectClientConfiguration configuration for an OpenID Connect client.
|
|
type OpenIDConnectClientConfiguration struct {
|
|
ID string `mapstructure:"id"`
|
|
Description string `mapstructure:"description"`
|
|
Secret string `mapstructure:"secret"`
|
|
RedirectURIs []string `mapstructure:"redirect_uris"`
|
|
Policy string `mapstructure:"authorization_policy"`
|
|
Scopes []string `mapstructure:"scopes"`
|
|
GrantTypes []string `mapstructure:"grant_types"`
|
|
ResponseTypes []string `mapstructure:"response_types"`
|
|
}
|
|
|
|
// DefaultOpenIDConnectClientConfiguration contains defaults for OIDC AutheliaClients.
|
|
var DefaultOpenIDConnectClientConfiguration = OpenIDConnectClientConfiguration{
|
|
Scopes: []string{"openid", "groups", "profile", "email"},
|
|
ResponseTypes: []string{"code"},
|
|
GrantTypes: []string{"refresh_token", "authorization_code"},
|
|
Policy: "two_factor",
|
|
}
|