-
Notifications
You must be signed in to change notification settings - Fork 24
/
consul.json
79 lines (78 loc) · 1.76 KB
/
consul.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
{
"domain": "sd",
"bind_addr": "127.0.0.1",
"bootstrap": true,
"server": true,
"node_name": "node01",
"datacenter": "dev",
"data_dir": "./tmp/consul_data/",
"ui": true,
"services": [
{
"id": "nsqlookupd-http",
"name": "nsqlookupd-http",
"address": "127.0.0.1",
"port": 4161
},
{
"id": "nsqlookupd-tcp",
"name": "nsqlookupd-tcp",
"address": "127.0.0.1",
"port": 4160
},
{
"id": "nsqd-tcp",
"name": "nsqd-tcp",
"address": "127.0.0.1",
"port": 4150
},
{
"id": "statsd",
"name": "statsd",
"address": "127.0.0.1",
"port": 8125
},
{
"id": "syslog",
"name": "syslog",
"address": "127.0.0.1",
"port": 9514
},
{
"id": "test1",
"name": "test1",
"address": "127.0.0.1",
"port": 12345
},
{
"id": "test2",
"name": "test1",
"address": "127.0.0.1",
"port": 12348
},
{
"id": "test32",
"name": "test3",
"address": "192.168.0.1",
"port": 12345
},
{
"id": "test33",
"name": "test3",
"address": "10.0.13.10",
"port": 12347
},
{
"id": "smtp1",
"name": "smtp",
"address": "192.168.10.238",
"port": 25
},
{
"id": "smtp2",
"name": "smtp",
"address": "192.168.10.237",
"port": 25
}
]
}