mirror of
https://github.com/byo-software/steam-openid-connect-provider.git
synced 2025-01-09 18:06:22 +00:00
3cd36724c9
TODO keycloak truststore
29 lines
No EOL
535 B
Text
29 lines
No EOL
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 |