-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchitecture-overview.puml
49 lines (38 loc) · 1.12 KB
/
architecture-overview.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
This diagram describes general architecture of the application.
@startuml
!define RECTANGLE class
!define DOCKER_NETWORK frame
skinparam componentStyle uml2
actor "User" as user
cloud "Internet" as internet
rectangle "Host System" {
[Bunkerweb] as bunkerweb
[Caddy] as caddy
[Authelia] as authelia
DOCKER_NETWORK "Docker Network" {
package "WebFrontend Container" as webfront {
[Flask Web Server]
}
package "Core Container" as coreapp {
[Main Application]
[Logging]
[API Server]
[CLI Wrapper]
}
}
[step-ca CLI] as stepcacli
}
user -down-> internet
internet -down-> bunkerweb
bunkerweb -down-> caddy
caddy -down-> authelia
authelia -down-> webfront
webfront -down-> coreapp : mTLS & authenticated API calls
coreapp -down-> stepcacli : Limited sudo access
note right of bunkerweb : Web Firewall
note right of caddy : HTTPS & Reverse Proxy
note right of authelia : Authentication
note right of webfront : Runs without permissions
note right of coreapp : Runs with limited permissions & AppArmor/SELinux profile
note right of stepcacli : Installed globally on host
@enduml