From d8671aa47dd0472b9779918a7a9cdddf9bfde355 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 6 Mar 2026 16:31:54 -0500 Subject: doc: architecture and authentication --- doc/arch.dot | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 doc/arch.dot (limited to 'doc/arch.dot') 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] + } +} -- cgit v1.2.3