mirror of
https://github.com/byo-software/steam-openid-connect-provider.git
synced 2025-01-10 02:16:22 +00:00
29 lines
535 B
Text
29 lines
535 B
Text
|
@startuml
|
||
|
|
||
|
node Host {
|
||
|
component Browser
|
||
|
|
||
|
node Docker {
|
||
|
component Proxy
|
||
|
component Keycloak
|
||
|
component SteamIdp
|
||
|
component Postgresql
|
||
|
|
||
|
Proxy --> Keycloak: keycloak (http)
|
||
|
Proxy --> SteamIdp: steamidp (http)
|
||
|
Keycloak --> Postgresql: postgres
|
||
|
|
||
|
Proxy <-- Keycloak: dev.local (https)
|
||
|
}
|
||
|
|
||
|
component SteamIdpDev as "SteamIdp"
|
||
|
}
|
||
|
|
||
|
cloud Internet {
|
||
|
component Steam
|
||
|
}
|
||
|
|
||
|
Browser --> Proxy: dev.local (https)
|
||
|
Proxy ..> SteamIdpDev: host.docker.internal (http)
|
||
|
|
||
|
@enduml
|