-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaultConfig.json
executable file
·74 lines (73 loc) · 1.34 KB
/
defaultConfig.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"serviceName": "Yggdrasil",
"logger": {
"level": "silly"
},
"port": 8842,
"api": {
"version": "0.1",
"unprotectedPath": []
},
"allowOrigins": [
"localhost:8842",
"localhost:3000",
"localhost:8080"
],
"sessions": {
"duration": "3h",
"durationSeconds": 10800
},
"externalServerBaseURL": null,
"fileStorage": {
"strategies": {
"local": {
"lib": "Local",
"storageRootPath": "/var/app/fileStorage"
},
"S3": {
}
},
"strategy": "local"
},
"redis": {
"port": 6379,
"host": "redis",
"family": 4,
"db": 0
},
"mongo": {
"retries": 30,
"retryDelay": 1000,
"useSSL": false,
"host": "mongo",
"port": 27017,
"auth": {
"userName": "mongo-admin",
"password": "1Lnl4ZEg!gPdF!zGKdILfww"
}
},
"sendmail": {
"name": "Yggdrasil",
"timezone": "europe/paris",
"tzid": "europe/paris",
"pool": true,
"host": "mailout",
"port": 25,
"secure": false,
"ignoreTLS": true
},
"emails": {
"strategy": "smtp",
"from": {
"name": "Yggdrasil",
"email": "[email protected]"
},
"testModeEmail": "[email protected]"
},
"OAuth": {
"google": {
"clientId": "YOUR CLIENT ID HERE",
"clientSecret": "YOUR CLIENT SECRET HERE"
}
}
}