forked from alexscheitlin/master-project-evoting
-
Notifications
You must be signed in to change notification settings - Fork 2
/
system.json
117 lines (117 loc) · 2.36 KB
/
system.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"network": {
"name": "e-voting"
},
"services": {
"voter_frontend": {
"ip": {
"development": "localhost",
"production": "172.1.1.30"
},
"port": 3000
},
"voting_authority_backend": {
"ip": {
"development": "localhost",
"production": "172.1.1.41"
},
"port": 4001
},
"voting_authority_frontend": {
"ip": {
"development": "localhost",
"production": "172.1.1.31"
},
"port": 3001
},
"access_provider_backend": {
"ip": {
"development": "localhost",
"production": "172.1.1.42"
},
"port": 4002
},
"identity_provider_backend": {
"ip": {
"development": "localhost",
"production": "172.1.1.43"
},
"port": 4003
},
"sealer_backend_1": {
"ip": {
"development": "localhost",
"production": "172.1.1.141"
},
"port": 4011
},
"sealer_frontend_1": {
"ip": {
"development": "localhost",
"production": "172.1.1.131"
},
"port": 3011
},
"sealer_parity_1": {
"ip": {
"development": "172.1.1.171",
"production": "172.1.1.171"
},
"port": 7011,
"rpc_port": 7011,
"node_port": 30301,
"ws_port": 5011
},
"sealer_backend_2": {
"ip": {
"development": "localhost",
"production": "172.1.1.142"
},
"port": 4012
},
"sealer_frontend_2": {
"ip": {
"development": "localhost",
"production": "172.1.1.132"
},
"port": 3012
},
"sealer_parity_2": {
"ip": {
"development": "172.1.1.172",
"production": "172.1.1.172"
},
"port": 7012,
"rpc_port": 7012,
"node_port": 30302,
"ws_port": 5012
},
"sealer_backend_3": {
"ip": {
"development": "localhost",
"production": "172.1.1.143"
},
"port": 4013
},
"sealer_frontend_3": {
"ip": {
"development": "localhost",
"production": "172.1.1.133"
},
"port": 3013
},
"sealer_parity_3": {
"ip": {
"development": "172.1.1.173",
"production": "172.1.1.173"
},
"port": 7013,
"rpc_port": 7013,
"node_port": 30303,
"ws_port": 5013
},
"ethstats": {
"port": 6001
}
}
}