diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-03-06 16:31:54 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-03-06 16:31:54 -0500 |
| commit | d8671aa47dd0472b9779918a7a9cdddf9bfde355 (patch) | |
| tree | 8f3a202b23fa8e50191ac299fff67453cea7d17c /doc/arch.dot | |
| parent | 0dda0350dec5e82be8e5a7767c7f0a56c0d48c94 (diff) | |
| download | buth-d8671aa47dd0472b9779918a7a9cdddf9bfde355.zip | |
doc: architecture and authentication
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] + } +} |