-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfig.json.devel
49 lines (49 loc) · 1015 Bytes
/
config.json.devel
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
{
"log_level": "notice",
"port": [
3000,
3001,
3002
],
"defaultModule":"registry",
"datasources":[
{
"name":"Db",
"module":"core/impl/datasource/mongodb",
"config": {
"uri": "mongodb://127.0.0.1:27017/database",
"options": {
"server": {
"socketOptions":{
"keepAlive": 1
}
}
},
"connectionLimit": 10,
"schema": "database",
"user": "user",
"password": "pwd"
}
}
],
"metaDs": "Db",
"dataDs": "Db",
"sessionDs": "Db",
"auth": {
"denyTopLevel": false,
"localAuthDS": "Db"
},
"policy": [
{
"module": "core/impl/access/aclmongo",
"config": {
"accessDs": "Db"
}
}
],
"session": {
"secret": "ion:demo:secret",
"resave": false,
"saveUninitialized": true
}
}