-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiagram.dot
23 lines (23 loc) · 1012 Bytes
/
diagram.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
digraph {
graph [bgcolor="#ffffff" pad=0.5 ratio="fill"]
"named: pgdata" [shape="folder"]
"geoserver" [shape="component"]
"./data/geoserver/datadir" [shape="folder"]
8080 [shape="circle"]
"wmsclient" [shape="component"]
"./data/nginx/html" [shape="folder"]
80 [shape="circle"]
"weatherdb" [shape="component"]
"pgadmin" [shape="component"]
"postgis" [shape="component"]
"./conf/pgadmin/servers.json" [shape="folder"]
81 [shape="circle"]
"./data/geoserver/datadir" -> "geoserver" [style="dashed" label="/var/local/geoserver" dir="both"]
8080 -> "geoserver" [style="solid"]
"./data/nginx/html" -> "wmsclient" [style="dashed" label="/usr/share/nginx/html" dir="both"]
80 -> "wmsclient" [style="solid"]
"named: pgdata" -> "weatherdb" [style="dashed" label="/var/lib/postgresql" dir="both"]
"pgadmin" -> "postgis" [style="dotted"]
"./conf/pgadmin/servers.json" -> "pgadmin" [style="dashed" label="/pgadmin4/servers.json" dir="both"]
81 -> "pgadmin" [style="solid" label=80]
}