Configuration of OIDC using Kanidm #153
|
Hello, I'm trying to configure Rustical to use Kanidm. However when I click on the button "Login with Kanidm", I'm redirected to a page with "Failed to discover OpenID provider". However Caddy and Kanidm logs show nothing. Everything is setup using docker and accessible using Caddy as a reverse proxy. Here is my config.toml [oidc]
name = "Kanidm"
issuer = "https://idm.internal/oauth2/openid"
client_id = "rustical"
client_secret = "redacted"
claim_userid = "preferred_username"
scopes = ["openid", "profile", "groups"]
require_group = "app/rustical"
allow_sign_up = true
[frontend]
allow_password_login = false # optionalI'm currently stuck. Is there a way to get more detailed logs from Rustical ? |
Replies: 1 comment 2 replies
|
Hey, the error "Request failed" unfortunately is the full error message in |
I solved my problem. As expected, it was a bad configuration on my part.