-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvoy.json
61 lines (61 loc) · 1.15 KB
/
convoy.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
{
"environment": "development",
"database": {
"dsn": "mongodb://root:rootpassword@mongodb:27017/convoy?authSource=admin"
},
"queue": {
"type": "redis",
"redis": {
"dsn": "redis://redis_server:6379"
}
},
"sentry": {
"dsn": "<insert-sentry-dsn>"
},
"server": {
"http": {
"ssl": false,
"ssl_cert_file": "",
"ssl_key_file": "",
"port": 8080
}
},
"group": {
"signature": {
"header": "X-Convoy-Signature",
"hash": "SHA512"
},
"strategy": {
"type": "default",
"default": {
"intervalSeconds": 20,
"retryLimit": 3
}
},
"disable_endpoint": true
},
"smtp": {
"provider": "sendgrid",
"url": "smtp.sendgrid.net",
"port": 2525,
"username": "apikey",
"password": "<insert-sendgrid-api-key>",
"from": "[email protected]"
},
"multiple_tenants": false,
"auth": {
"require_auth": true,
"file": {
"basic": [
{
"username": "admin",
"password": "admin",
"role": {
"type": "super_user",
"groups": []
}
}
]
}
}
}