-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathconfig_default.js
58 lines (55 loc) · 1.28 KB
/
config_default.js
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
/**
* 系统配置文件
*/
const path = require('path');
const config = {
// 本地调试模式
debug: true,
// 网站名称
sitename: 'EasyClub',
describute: "jsClub:js爱好者社区",
// 板块列表
tags: ['原创', '转载', '提问', '站务'],
// 论坛管理员,username
admins: ['dylan'],
// 每页主题数量
pageSize: 20,
// 积分设置
score: {
topic: 5, // 发表一个主题
reply: 1 // 一个回复
},
// 显示页码数量
showPageNum: 5,
// 数据库连接
mongodb: {
user: '',
pass: '',
host: '127.0.0.1',
port: 27017,
database: 'easyclub'
},
// Redis配置
redis: {
host: '127.0.0.1',
port: 6379
},
// 七牛配置信息
qiniu: {
bucket: 'you bucket name',
accessKey: 'you access key',
secretKey: 'you secret key',
origin: 'http://your qiniu domain',
// 如果vps在国外,请使用 http://up.qiniug.com/ ,这是七牛的国际节点
// 如果在国内,此项请留空
// uploadURL: 'http://xxxxxxxx',
},
default_avatar: '/public/images/photo.png', // 默认头像
upload: {
path: path.join(__dirname, 'public/upload/'),
url: '/public/upload',
extnames: ['jpeg', 'jpg', 'gif', 'png'],
fileSize: 1024 * 1024
}
}
module.exports = config;