diff options
Diffstat (limited to 'doc/arch.dot')
| -rw-r--r-- | doc/arch.dot | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/arch.dot b/doc/arch.dot new file mode 100644 index 0000000..fa6f5aa --- /dev/null +++ b/doc/arch.dot @@ -0,0 +1,18 @@ +graph { + graph [rankdir=BT; nodesep=1.0; ranksep=1.0] + 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"] + + subgraph cluster_lan { + relay, shop, api, auth + authfs [shape=cylinder] + } +} |