-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
29 lines (29 loc) · 889 Bytes
/
config.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
{
"systemLog": { // aliased to "log"
"verbosity": 0, // 0 ~ 5
"path": "path/to/log/file",
"logAppend": true, // aliased to "log.append"
"timeStampFormat": "iso8601-utc | iso8601-local", // aliased to "log.timezone"
"traceAllExceptions": false // debug: true
},
"processManagement": {
"fork": true // aliased to "fork"
},
"cloud": {
"monitoring": {
"free": {
"state": false // aliased to "monitoring"
}
}
},
"net": { // aliased to ""
"port": 27017,
"bindIp": "127.0.0.1", // aliased to "host"
"maxIncomingConnections": 65536, // aliased to "maxConnections"
"wireObjectCheck": true, // aliased to "json_validation"
"ipv6": true
},
"storage": {
"dbPath": "path/to/db/folder" // aliased to "path"
}
}