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
| /**
| * Created by bin.shen on 01/04/2017.
| */
|
| var config = {
| HOST: "0.0.0.0",
| PORT: 5959,
| CRUISER_PORT: 5757,
| UAV_PORT: 5656,
|
| //KAFKA_HOST: '47.99.145.48:9092',
| KAFKA_HOST: '114.55.95.168:9092,121.199.75.103:9092,121.43.43.21:9092',
|
| REDIS_OPTS: {
| host: "r-bp1hez4g7rkqjswpay.redis.rds.aliyuncs.com",
| port: 6379,
| password: "coor6za0eishe8M",
| db: 1
| },
|
| /*REDIS_OPTS: {
| host: "r-bp1hez4g7rkqjswpaypd.redis.rds.aliyuncs.com",
| port: 6379,
| password: "coor6za0eishe8M",
| db: 0
| },*/
|
| //邮件配置
| email: {
| service: 'QQ',
| user: '357328213@qq.com',
| pass: 'pkubbxzznfxhbgji'
| },
|
| };
|
|
| module.exports = config;
|
|