Skip to content
Snippets Groups Projects
Select Git revision
  • 8bbbd2c2cf3bb298423a18f9c773d3930d87e85d
  • main default
  • keycloak-deprecate
  • remove-jwt-easy
  • ci-update
  • v0.1.15
  • v0.1.14
  • v0.1.13
  • v0.1.12
  • v0.1.11
  • v0.1.10
  • v0.1.9
  • v0.1.8
  • v0.1.7
  • v0.1.6
  • v0.1.5
  • v0.1.4
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
21 results

dbp-relay-auth-bundle

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Renovate Bot authored
    8bbbd2c2
    History

    DBP Relay Keycloak Bundle

    GitLab | Packagist

    Bundle Configuration

    created via ./bin/console config:dump-reference DbpRelayKeycloakBundle | sed '/^$/d'

    # Default configuration for "DbpRelayKeycloakBundle"
    dbp_relay_keycloak:
        # The Keycloak server URL
        server_url:           ~ # Example: 'https://keycloak.example.com/auth'
        # The Keycloak Realm
        realm:                ~ # Example: myrealm
        # The ID for the keycloak client (authorization code flow) used for API docs or similar
        frontend_client_id:   ~ # Example: client-docs
        # If remote validation should be used. If set to false the token signature will
        # be only checked locally and not send to the keycloak server
        remote_validation:    false
        # The ID of the client (client credentials flow) used for remote token validation
        # (optional)
        remote_validation_client_id: ~ # Example: client-token-check
        # The client secret for the client referenced by client_id (optional)
        remote_validation_client_secret: ~ # Example: mysecret
        # If set only tokens which contain this audience are accepted (optional)
        required_audience:    ~ # Example: my-api
        # How much the system time of the API server and the Keycloak server
        # can be out of sync (in seconds). Used for local token validation.
        local_validation_leeway: 120