forked from abruzzi/graphviz-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeo_after.dot
More file actions
67 lines (50 loc) · 1.68 KB
/
geo_after.dot
File metadata and controls
67 lines (50 loc) · 1.68 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
digraph geo_after{
fontname="Consolas";
fontsize=10;
node [shape="Mrecord", fontname="Consolas", fontsize=10];
edge [color="#F1C40F", fontname="Consolas", fontsize=10];
subgraph cluster_client01 {
label="Browser";
style="filled";
color="#eeeeee";
node [style="filled", color="orange"];
front_end_dev01 [label="AngularJS App"];
}
subgraph cluster_client02 {
label="Browser";
style="filled";
color="#eeeeee";
node [style="filled", color="orange"];
front_end_dev02 [label="AngularJS App"];
}
subgraph cluster_dev01 {
label="WireMock (moco-like simple server)";
style="filled";
color="#eeeeee";
node [style="filled", color="orange"];
static_data_dev01 [label="Fixtures"];
proxy_dev01 [label="Proxy to GIS Server"];
front_end_dev01 -> static_data_dev01;
front_end_dev01 -> proxy_dev01;
}
subgraph cluster_dev02 {
label="WireMock (moco-like simple server)";
style="filled";
color="#eeeeee";
node [style="filled", color="orange"];
static_data_dev02 [label="Fixtures"];
proxy_dev02 [label="Proxy to GIS Server"];
front_end_dev02 -> static_data_dev02;
front_end_dev02 -> proxy_dev02;
}
subgraph cluster_gis {
style="filled";
color="grey";
node [style="filled", color="orange"];
gis_server [label="GIS Map Server"];
gis_worker [label="GIS Backend Server"];
gis_server -> gis_worker [color="black"];
}
proxy_dev01 -> gis_server [label="proxy"];
proxy_dev02 -> gis_server [label="proxy"];
}