Skip to content
Snippets Groups Projects
Select Git revision
  • b9b92a27726890161db8af49c586d1160762aeb8
  • 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

index.md

Blame
  • index.md 606 B

    Overview

    Source: https://gitlab.tugraz.at/dbp/relay/dbp-relay-auth-bundle

    The auth bundle connects the core bundle with an OIDC server. For each request it validates the passed access token, creates a Symonfy user and assigns Symfony roles to that user.

    graph LR
        style auth_bundle fill:#606096,color:#fff
    
        oidc_server("OIDC Server")
    
        subgraph API Gateway
            api(("API"))
            core_bundle("Core Bundle")
            auth_bundle("Auth Bundle")
        end
    
        api --> core_bundle
        core_bundle --> auth_bundle
        auth_bundle --> core_bundle
        auth_bundle --> oidc_server