-
Notifications
You must be signed in to change notification settings - Fork 4
/
architecture.dot
66 lines (48 loc) · 1.22 KB
/
architecture.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
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
digraph G {
subgraph incoming {
node [style=filled,color=cornsilk];
haproxy_h2o -> h2o_1;
haproxy_h2o -> h2o_2;
haproxy_h2o -> h2o_3;
haproxy_h2o -> h2o_4;
label = "h2o";
color=blue
}
subgraph balance {
node [style=filled,color=lightblue];
varnish -> nginx_pagespeed;
label = "Caching";
}
fastly_edge_nodes -> fastly_shield_ams;
fastly_shield_ams -> haproxy_h2o;
h2o_1 -> varnish;
h2o_2 -> varnish;
h2o_3 -> varnish;
h2o_4 -> varnish;
h2o_1 -> countly;
h2o_2 -> countly;
h2o_3 -> countly;
h2o_4 -> countly;
countly -> mongo_1;
h2o_1 -> bifrost;
h2o_2 -> bifrost;
h2o_3 -> bifrost;
h2o_4 -> bifrost;
bifrost -> haproxy_h2o;
nginx_pagespeed -> haproxy_h2o;
nginx_pagespeed -> nginx_ruleproxy;
nginx_ruleproxy -> phpfpm;
phpfpm -> mysql;
phpfpm -> redis;
phpfpm -> elasticsearch;
phpfpm -> eyeOfProvidence;
phpfpm -> varnish;
eyeOfProvidence -> telegram;
mysql -> backup_s3;
backup_s3 -> mysql;
backup_s3 -> amazon_s3;
mysql [shape=box];
redis [shape=box];
mongo_1 [shape=box];
elasticsearch [shape=box];
}