Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion keycloak/ABOUT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
- `"protocol": "openid-connect"`: OIDC (modern, uses json - jwt -) vs SAML (older, uses XML); explicit even though OIDC is the default.
- `"publicClient": true`: Whether the client needs a `client_secret`; on (no secret) — our backend is trusted and it keeps config simpler.
- `"standardFlowEnabled": false`: OAuth2 Authorization Code flow (redirect-based browser login); off for simplicity but not recommanded.
- `"directAccessGrantsEnabled": true`: toggles the Resource Owner Password Credentials (ROPC) that we uses for logging
- `"directAccessGrantsEnabled": true`: toggles the Resource Owner Password Credentials (ROPC) that we uses for login
- `"components": ...`: Only makes email required to avoid "Account is not fully set up" error message
Loading