mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-24 17:40:10 -05:00
Wrong Authentik OIDC Issuer URL expected #1018
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @SirJohn2024 on GitHub (Feb 10, 2025).
Authentik OpenID Configuration Issuer URLs have a trailing '/' that apparently is not expected:
thread 'tokio-runtime-worker' panicked at bin/core/src/auth/oidc/client.rs:66:4:
called
Result::unwrap()on anErrvalue: Failed to init default OIDC clientCaused by:
0: Failed to get OIDC /.well-known/openid-configuration
1: Validation error: unexpected issuer URI
https://authentik.local.xxxxxxxxx.dev/application/o/komodo/(expectedhttps://authentik.local.xxxxxxxxxxxxxt.dev/application/o/komodo)From what I know, OIDC Issuer URLs cannot be changed...🤷♂️
@Elekam commented on GitHub (Mar 26, 2025):
Did you manage to resolve this somehow? Or why was it just closed? I have also not been able to setup authentik with Komodo, getting the exact same error
@Skyfay commented on GitHub (Apr 3, 2025):
@Elekam It worked for me after some research.
KOMODO_OIDC_PROVIDER=have a/at the end as you see it in your authentik dashboard.https://auth.example.com/application/o/komodohttps://auth.example.com/application/o/komodo/Applications > Providers > Komodo (or what you named it):Signing Keyset. I usedauthentik Self-signed CertificateRedirect URLs/Originsto the follwoing value:https://komodo.example.com/auth/oidc/callbackAfter changing this things it worked for me. After first login you need to enable the OICD User with you local user in the Dashboard bevor you can access it.
Additional information:
I set
KOMODO_OIDC_USE_FULL_EMAIL=falseI used some information from this issue to solve the problem: https://github.com/moghtech/komodo/issues/237