Skip to content
Snippets Groups Projects
Commit 4a931434 authored by Marko Rintamäki's avatar Marko Rintamäki
Browse files

Update application-architecture.md

parent a5a36bf7
No related branches found
No related tags found
No related merge requests found
Pipeline #438887 passed
......@@ -23,6 +23,42 @@ Responsible person
* Introduction to the document ..
```plantuml
@startuml
actor User
node "Client_Host" as WIN10{
node "Browser"{
}
}
cloud "Network" as net{
queue "https"{
}
}
node "Uno Server / Ubuntu 20.04" as AWS{
node "Frontend_Container"{
}
node "Backend_Container" {
}
database "MariaDB_Container" {
}
node "Logger_Container" {
}
}
User -- Browser
Browser -- https
https -- Frontend_Container
Frontend_Container -- Backend_Container
Backend_Container -- MariaDB_Container
Logger_Container -- Frontend_Container
Logger_Container -- Backend_Container
Logger_Container -- MariaDB_Container
@enduml
```
## Overview
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment