I have mounted the config via my docker-compose.yml. However, the list of providers in /api/v1/info stays empty:
{
"version": "v0.24.0",
"frontend_url": "https://todo.mydomain.dom",
"motd": "",
"link_sharing_enabled": true,
"max_file_size": "20MB",
"registration_enabled": true,
"available_migrators": [
"vikunja-file",
"ticktick"
],
"task_attachments_enabled": true,
"enabled_background_providers": [
"upload"
],
"totp_enabled": true,
"legal": {
"imprint_url": "",
"privacy_policy_url": ""
},
"caldav_enabled": true,
"auth": {
"local": {
"enabled": false
},
"openid_connect": {
"enabled": true,
"providers": []
}
},
"email_reminders_enabled": true,
"user_deletion_enabled": true,
"task_comments_enabled": true,
"demo_mode_enabled": false,
"webhooks_enabled": true,
"public_teams_enabled": false
}
EDIT: I checked the “auth url” on my authentik. It shows the config for the issuer with all discovery data correctly it seems.
{
"issuer": "https://auth.mydomain.dom/application/o/vikunja/",
"authorization_endpoint": "https://auth.mydomain.dom/application/o/authorize/",
"token_endpoint": "https://auth.mydomain.dom/application/o/token/",
"userinfo_endpoint": "https://auth.mydomain.dom/application/o/userinfo/",
"end_session_endpoint": "https://auth.mydomain.dom/application/o/vikunja/end-session/",
"introspection_endpoint": "https://auth.mydomain.dom/application/o/introspect/",
"revocation_endpoint": "https://auth.mydomain.dom/application/o/revoke/",
"device_authorization_endpoint": "https://auth.mydomain.dom/application/o/device/",
"response_types_supported": [
"code",
"id_token",
"id_token token",
"code token",
"code id_token",
"code id_token token"
],
"response_modes_supported": [
"query",
"fragment",
"form_post"
],
"jwks_uri": "https://auth.mydomain.dom/application/o/vikunja/jwks/",
"grant_types_supported": [
"authorization_code",
"refresh_token",
"implicit",
"client_credentials",
"password",
"urn:ietf:params:oauth:grant-type:device_code"
],
"id_token_signing_alg_values_supported": [
"RS256"
],
"subject_types_supported": [
"public"
],
"token_endpoint_auth_methods_supported": [
"client_secret_post",
"client_secret_basic"
],
"acr_values_supported": [
"goauthentik.io/providers/oauth2/default"
],
"scopes_supported": [
"profile",
"email",
"openid"
],
"request_parameter_supported": false,
"claims_supported": [
"sub",
"iss",
"aud",
"exp",
"iat",
"auth_time",
"acr",
"amr",
"nonce",
"email",
"email_verified",
"name",
"given_name",
"preferred_username",
"nickname",
"groups"
],
"claims_parameter_supported": false,
"code_challenge_methods_supported": [
"plain",
"S256"
]
}