config.js
5.13 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
'use strict';
const path = require('path');
let env = process.env.NODE_ENV || 'development';
if (process.env.NODE_ENV === 'test3') {
env = 'test';
}
const defaults = {
port: 9000,
buildDir: path.normalize(__dirname + '/../packages/'),
dbDir: path.normalize(__dirname + '/../db'),
influxdb: {
host: '172.31.26.70',
port: 4444,
},
zookeeperServer: '127.0.0.1:2181',
redis: {
connect: {
host: '127.0.0.1', //'127.0.0.1',
port: '6379',
retry_strategy: options => {
if (options.error && options.error.code === 'ECONNREFUSED') {
// console.log('redis连接不成功');
}
if (options.total_retry_time > 1000 * 60 * 60 * 6) {
// console.log('redis连接超时');
return;
}
if (options.attempt > 10) {
return 1000 * 60 * 60 * 0.5;
}
return Math.min(options.attempt * 100, 1000);
}
}
},
mysql: {
host: '192.168.102.219',
user: 'yh_test',
password: 'yh_test',
port: '3306',
database: 'yoho_seo'
},
apmMysql: {
host: '192.168.102.168',
user: 'root',
password: 'root',
port: '3306',
database: 'webapm'
},
domains: {
// test3
singleApi: 'http://api-test3.yohops.com:9999/',
api: 'http://api-test3.yohops.com:9999/',
service: 'http://service-test3.yohops.com:9999/',
serviceNotify: 'http://service-test3.yohops.com:9999/',
global: 'http://global-test-soa.yohops.com:9999/',
platformApi: 'http://192.168.102.48:8088/',
search: 'http://192.168.102.216:8080/yohosearch/',
imSocket: 'ws://socket.yohobuy.com:10240',
imCs: 'http://im.yohobuy.com/api',
unionApi: 'http://172.16.6.90:8080/',
},
baiduToken: '0lSAO4ZxEKsYopMG',
// redis key prefix
singleBrandKeyPre: 'golobal:yoho:single_brand:', // key: 品牌id, val: 名牌名
singleSortKeyPre: 'golobal:yoho:single_sort:', // key: 品类id, val: 品类名
sourceMap: '/home/yoho-node-ci/dist/'
};
const specific = {
development: {},
test: {
redis: {
connect: {
host: 'redis.yohoops.com',
// host: '192.168.102.49',
port: '6379',
enable_offline_queue: false,
retry_strategy(options) {
if (options.error && options.error.code === 'ECONNREFUSED') {
console.log('connect redis server fail');
}
if (options.attempt < 10) {
return Math.min(options.attempt * 100, 1000);
} else if (options.attempt > 10 && options.attempt < 100) {
return 1000;
} else {
return 1000 * 10;
}
}
}
},
mysql: {
host: '192.168.102.219',
user: 'yh_test',
password: 'yh_test',
port: '3306',
database: 'yoho_seo'
},
},
production: {
zookeeperServer: 'web.zookeeper.yohoops.org:2181',
apm: {
aws: {
host: '172.31.26.70',
port: 8086
},
qcloud: {
host: '10.66.0.139',
port: 8086
}
},
redis: {
connect: {
host: 'redis.web.yohoops.org',
port: '6379',
password: 'redis9646',
auth_pass: 'redis9646',
retry_strategy: options => {
if (options.error && options.error.code === 'ECONNREFUSED') {
console.log('redis连接不成功');
}
if (options.total_retry_time > 1000 * 60 * 60 * 6) {
console.log('redis连接超时');
return;
}
if (options.attempt > 10) {
return 1000 * 60 * 60 * 0.5;
}
return Math.min(options.attempt * 100, 1000);
}
}
},
mysql: {
host: '10.67.2.103',
user: 'yoho_seo_user',
password: 'eRUWnPm6nqWT',
port: '3306',
database: 'yoho_seo',
},
domains: {
singleApi: 'http://single.yoho.cn/',
api: 'http://api.yoho.cn/',
service: 'http://service.yoho.cn/',
serviceNotify: 'http://service.yoho.cn/',
global: 'http://api-global.yohobuy.com/',
platformApi: 'http://172.16.6.210:8088/',
search: 'http://search.yohoops.org/yohosearch/'
},
apmMysql: {
host: '10.66.0.139',
port: '3306',
database: 'webapm',
user: 'root',
password: 'yB877Jy7tV6juIYk'
}
}
};
module.exports = Object.assign(defaults, specific[env]);