-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.json.template
More file actions
44 lines (35 loc) · 884 Bytes
/
config.json.template
File metadata and controls
44 lines (35 loc) · 884 Bytes
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
{
"hostname": "0.0.0.0",
"port": "3000",
"urlPathPrefix": "",
"editorRoot": "../wodo",
"resourceRoot": "../resources",
"templatesRoot": "../templates",
"documentsRoot": "../documents",
"cacheRoot": "../cache",
"onlySingleTemplate": true,
"allowUpload": false,
"mongodbHost": "127.0.0.1",
"mongodbPort": "27017",
"mongodbName": "kotype",
"conversionHost": "http://127.0.0.1:16080",
"cookieSecret": "varisekrit",
"ssl": {
"key": "../ssl/key.pem",
"cert": "../ssl/cert.pem"
},
"allowSignup": true,
"auth": {
"callbackHost": "my.server",
"callbackPort": "30001",
"github": {
"clientID": "yourclientid",
"clientSecret": "yourclientsecret"
}
},
"whitelist": {
"local": {
"johndoe": true
}
}
}