config.js
1.1 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
/**
* config.js
* @author: feng.chen<feng.chen@yoho.cn>
* @date: 2017/04/13
*/
'use strict';
const apiDomain = require('./api-domain');
//
const config = {
app: 'shop-manage',
appVersion: '0.0.1', // 调用api的版本
platform: 2,
port: 6007,
siteUrl: '//shop.yohobuy.com',
assetUrl: '//127.0.0.1:5001',
cookieDomain: '.yohobuy.com',
apiDomain,
loggers: {
infoFile: {
name: 'info',
level: 'info',
filename: '/Data/logs/yoho-shop-manage/info/info.log',
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
timestamp() {
return new Date().toString();
},
},
errorFile: {
name: 'error',
level: 'error',
filename: '/Data/logs/yoho-shop-manage/error/error.log',
handleExceptions: true,
maxFiles: 1,
tailable: true,
maxsize: Math.pow(1024, 3),
timestamp() {
return new Date().toString();
},
},
console: {
close: true,
level: 'info',
colorize: 'all',
prettyPrint: true,
},
},
memcache: {
session: '',
},
};
module.exports = config;