Commit 81a2edce195155bf6967cc6c1b028bc1a1e5803c
1 parent
15743b8e
Exists in
master
and in
90 other branches
Add network architecture diagram
Showing
1 changed file
with
27 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,27 @@ |
| 1 | +digraph architecture { | |
| 2 | + | |
| 3 | + subgraph cluster_0 { | |
| 4 | + style=filled; | |
| 5 | + color="#d3d7cf"; | |
| 6 | + label = "Local network"; | |
| 7 | + node [style=filled,fillcolor=white]; | |
| 8 | + | |
| 9 | + reverseproxy [shape=box]; | |
| 10 | + social [shape=box]; | |
| 11 | + email [shape=box]; | |
| 12 | + integration [shape=box]; | |
| 13 | + database [shape=box]; | |
| 14 | + | |
| 15 | + reverseproxy -> social [label="HTTP"]; | |
| 16 | + social -> integration [label="HTTP"]; | |
| 17 | + social -> database [label="PostgreSQL (5432)"]; | |
| 18 | + integration -> database [label="PostgreSQL (5432)"]; | |
| 19 | + email -> integration [label="SMTP"]; | |
| 20 | + | |
| 21 | + } | |
| 22 | + | |
| 23 | + internet -> reverseproxy [label="HTTP"]; | |
| 24 | + internet -> email [label="SMTP"]; | |
| 25 | + email -> internet [label="SMTP"]; | |
| 26 | + | |
| 27 | +} | ... | ... |