From 81a2edce195155bf6967cc6c1b028bc1a1e5803c Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Mon, 23 Mar 2015 12:11:23 -0300 Subject: [PATCH] Add network architecture diagram --- docs/architecture.dot | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+), 0 deletions(-) create mode 100644 docs/architecture.dot diff --git a/docs/architecture.dot b/docs/architecture.dot new file mode 100644 index 0000000..e339bc5 --- /dev/null +++ b/docs/architecture.dot @@ -0,0 +1,27 @@ +digraph architecture { + + subgraph cluster_0 { + style=filled; + color="#d3d7cf"; + label = "Local network"; + node [style=filled,fillcolor=white]; + + reverseproxy [shape=box]; + social [shape=box]; + email [shape=box]; + integration [shape=box]; + database [shape=box]; + + reverseproxy -> social [label="HTTP"]; + social -> integration [label="HTTP"]; + social -> database [label="PostgreSQL (5432)"]; + integration -> database [label="PostgreSQL (5432)"]; + email -> integration [label="SMTP"]; + + } + + internet -> reverseproxy [label="HTTP"]; + internet -> email [label="SMTP"]; + email -> internet [label="SMTP"]; + +} -- libgit2 0.21.2