blob: 9bf558db835f17f436f7345fc8c04d7712621132 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
graph {
graph [rankdir=BT; nodesep=0.75; ranksep=0.5]
node [shape=box]
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 {
relayd, httpd, buthd, authfs, shopfs
{node [shape=cylinder]; authfs, shopfs}
}
}
|