Skip to content

Examples

For the OIDC client insight-app, the post logout redirect URI must also be configured on the provider:

"post_logout_redirect_uris": [
  "https://your-insight-endpoint/insight/auth/logout_callback"
]

Keycloak OIDC with backend authorization

🚧 Default setup for OIDC authorization.

insight.properties:

  • oidc.server=https://auth.keycloak.idp.tld/realms/insight
  • oidc.client.client_id=insight-app
  • oidc.client.client_secret=your_client_secret

config.json

"oidc": {
  "backend": true
}

Keycloak OIDC with frontend authorization

insight.properties:

  • oidc.server=https://auth.keycloak.idp.tld/realms/insight

config.json

"oidc": {
  "server": "https://auth.keycloak.idp.tld/realms/insight"
  "clientId": "insight-app"
}

HxGN

see HxGN Connector

MAS

see MAS Connector