mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 09:52:32 +00:00
20 lines
354 B
Text
20 lines
354 B
Text
|
digraph G {
|
||
|
node[shape=box];
|
||
|
edge[headport=n];
|
||
|
|
||
|
subgraph cluster {
|
||
|
hitch
|
||
|
"acme.sh"
|
||
|
}
|
||
|
hitch -> varnish;
|
||
|
varnish -> nginx;
|
||
|
varnish -> pkb;
|
||
|
varnish -> binary_trance;
|
||
|
varnish -> wizards;
|
||
|
varnish -> rust_melbourne;
|
||
|
pkb -> syncthing;
|
||
|
binary_trance -> postgresql:nw;
|
||
|
wizards -> postgresql;
|
||
|
rust_melbourne -> postgresql:ne;
|
||
|
}
|