canaille-globuzma/canaille/conf/oauth-authorization-server.sample.json
2022-10-03 18:42:08 +02:00

31 lines
1 KiB
JSON

{
"issuer":
"https://auth.mydomain.tld",
"authorization_endpoint":
"https://auth.mydomain.tld/oauth/authorize",
"token_endpoint":
"https://auth.mydomain.tld/oauth/token",
"token_endpoint_auth_methods_supported":
["client_secret_basic", "private_key_jwt",
"client_secret_post", "none"],
"token_endpoint_auth_signing_alg_values_supported":
["RS256", "ES256"],
"userinfo_endpoint":
"https://auth.mydomain.tld/oauth/userinfo",
"introspection_endpoint":
"https://auth.mydomain.tld/oauth/introspect",
"jwks_uri":
"https://auth.mydomain.tld/oauth/jwks.json",
"registration_endpoint":
"https://auth.mydomain.tld/oauth/register",
"scopes_supported":
["openid", "profile", "email", "address",
"phone", "groups"],
"response_types_supported":
["code", "token", "id_token", "code token",
"code id_token", "token id_token"],
"service_documentation":
"https://auth.mydomain.tld/documentation.html",
"ui_locales_supported":
["en-US", "en-GB", "en-CA", "fr-FR", "fr-CA"]
}