-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiagram.dot
34 lines (34 loc) · 1.53 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
digraph {
graph [bgcolor="#ffffff" pad=0.5 ratio="fill"]
"named: pgdata" [shape="folder"]
"geoserver" [shape="component"]
"postgis" [shape="component"]
"./data/geoserver/data_dir/" [shape="folder"]
"./fonts/" [shape="folder"]
8080 [shape="circle"]
"wmsclient" [shape="component"]
"./data/nginx/html/nominatim-ui" [shape="folder"]
80 [shape="circle"]
"nominatim" [shape="component"]
"nominatim-worker" [shape="component"]
"./pbfs/" [shape="folder"]
8081 [shape="circle"]
5432 [shape="circle"]
"imposm-worker" [shape="component"]
"geoserver" -> "postgis" [style="dotted"]
"./data/geoserver/data_dir/" -> "geoserver" [style="dashed" label="/opt/geoserver/data_dir" dir="both"]
"./fonts/" -> "geoserver" [style="dashed" label="/opt/fonts" dir="both"]
8080 -> "geoserver" [style="solid"]
"./data/nginx/html/nominatim-ui" -> "wmsclient" [style="dashed" label="/usr/share/nginx/html" dir="both"]
80 -> "wmsclient" [style="solid"]
"nominatim" -> "postgis" [style="dotted"]
"nominatim" -> "nominatim-worker" [style="dotted"]
"./pbfs/" -> "nominatim" [style="dashed" label="/tmp/pbfs" dir="both"]
8081 -> "nominatim" [style="solid" label=8080]
"named: pgdata" -> "postgis" [style="dashed" label="/var/lib/postgresql" dir="both"]
5432 -> "postgis" [style="solid"]
"imposm-worker" -> "postgis" [style="dotted"]
"./pbfs/" -> "imposm-worker" [style="dashed" label="/pbfs" dir="both"]
"nominatim-worker" -> "postgis" [style="dotted"]
"./pbfs/" -> "nominatim-worker" [style="dashed" label="/tmp/pbfs" dir="both"]
}