1,068
edits
(Created page with "== Summary == This page aims to scope out the different projects that work together as part of the Access Control Network. The main components are: * ACNode - The clients tha...") |
No edit summary |
||
Line 13: | Line 13: | ||
rankdir=TD; | rankdir=TD; | ||
size="10,5!"; | size="10,5!"; | ||
subgraph cluster_0 { | |||
node [shape=box,style=filled,color=lightgrey]; | |||
label = "ACServer"; | |||
sqlite [label="SQLite cache",shape=box]; | |||
httpserver [label="HTTP server",shape=box]; | |||
httpserver -> sqlite; | |||
sqlite -> httpserver; | |||
} | |||
acnode1 [label="ACNode",shape=box]; | acnode1 [label="ACNode",shape=box]; | ||
acnode2 [label="ACNode",shape=box]; | acnode2 [label="ACNode",shape=box]; | ||
acnode3 [label="ACNode",shape=box]; | acnode3 [label="ACNode",shape=box]; | ||
turing [label="Turing VM",shape=box]; | turing [label="Turing VM",shape=box]; | ||
acnode1 -> httpserver; | |||
acnode2 -> httpserver; | |||
acnode3 -> httpserver; | |||
turing-> | httpserver -> acnode1; | ||
httpserver -> acnode2; | |||
httpserver -> acnode3; | |||
turing-> httpserver; | |||
} | } | ||
</graphviz> | </graphviz> |