diff options
Diffstat (limited to 'doc/arch.dot')
| -rw-r--r-- | doc/arch.dot | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/doc/arch.dot b/doc/arch.dot index fa6f5aa..9bf558d 100644 --- a/doc/arch.dot +++ b/doc/arch.dot @@ -1,18 +1,15 @@ graph { - graph [rankdir=BT; nodesep=1.0; ranksep=1.0] + graph [rankdir=BT; nodesep=0.75; ranksep=0.5] node [shape=box] - client -- relay [label="HTTPS"] - client -- relay [label="9P/WS"] - relay -- shop [label="HTTP\nstatic html"] - relay --api [label="HTTP\nhtmx frags"] - relay -- api [label="9P/WS\napi"] - relay --auth [label="HTTP\nforms"] - api -- authfs [label="9P/TCP"] - auth --authfs [label="9P/TCP"] + client -- relayd [label="HTTPS"] + relayd -- httpd [label="HTTP\nstatic html"] + relayd --buthd [label="HTTP\nhtmx frags\napi"] + buthd -- authfs [label="9P"] + buthd -- shopfs [label="9P"] subgraph cluster_lan { - relay, shop, api, auth - authfs [shape=cylinder] + relayd, httpd, buthd, authfs, shopfs + {node [shape=cylinder]; authfs, shopfs} } } |