diff options
| author | Juan Marín Noguera <juan.marinn@um.es> | 2021-05-24 21:04:26 +0200 |
|---|---|---|
| committer | Juan Marín Noguera <juan.marinn@um.es> | 2021-05-24 21:06:14 +0200 |
| commit | 71aff55525f5ac45b6da89ce8be257386e6a37c8 (patch) | |
| tree | 3f2924e809b92c10a9c5b7e12e8c914b42d095ee /pds/n6.2.puml | |
| parent | 1543b55982672030426e623382161d32dc765761 (diff) | |
PDS tema 5
Diffstat (limited to 'pds/n6.2.puml')
| -rw-r--r-- | pds/n6.2.puml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pds/n6.2.puml b/pds/n6.2.puml new file mode 100644 index 0000000..1ba71c7 --- /dev/null +++ b/pds/n6.2.puml @@ -0,0 +1,21 @@ +@startuml +left to right direction +node ": GenericPC" as PC <<client workstation>> { + node ": WebBrowser" as Browser <<browser>> { + rectangle WebClient <<artifact>> + } +} + +node ": Raspberry Pi 4" as Server <<server>> { + node ": Raspbian" as Raspbian <<OS>> { + node ": PostgreSQL 12" as DB <<database>> + node ": Apache 2" as Apache <<web server>> + artifact ": MusicManager" as Manager <<artifact>> + } +} + +Browser -- Apache : HTTPS +WebClient -- Manager : DASH +Apache - Manager : FastCGI +Manager -- DB : SQL +@enduml |
