feat: Simplify authorization request creation in OpenIDConnectService and use environment variables for Keycloak configuration

This commit is contained in:
2026-01-20 20:39:48 +01:00
parent 6479f68b6c
commit 82a9706deb
2 changed files with 11 additions and 26 deletions

View File

@@ -28,8 +28,8 @@ openid {
}
keycloak {
clientId = "your-keycloak-client-id"
clientSecret = "your-keycloak-client-secret"
clientId = ${?KEYCLOAK_CLIENT_ID}
clientSecret = ${?KEYCLOAK_CLIENT_SECRET}
redirectUri = "https://knockout.janis-eccarius.de/api/auth/keycloak/callback"
authUrl = ${?KEYCLOAK_AUTH_URL}
authUrl = "https://identity.janis-eccarius.de/realms/master"