-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathconvoy.sentinel.json.example
More file actions
50 lines (50 loc) · 1.2 KB
/
convoy.sentinel.json.example
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
{
"auth": {
"native": { "enabled": true },
"jwt": {
"enabled": true,
"secret": "<insert-jwt-secret>",
"expiry": 3600,
"refresh_secret": "<insert-jwt-refresh-secret>",
"refresh_expiry": 86400
},
"is_signup_enabled": true
},
"database": {
"type": "postgres",
"scheme": "postgres",
"host": "postgres",
"username": "convoy",
"password": "convoy",
"database": "convoy",
"options": "sslmode=disable",
"port": 5432,
"max_open_conn": 100,
"max_idle_conn": 10,
"conn_max_lifetime": 3600
},
"redis": {
"scheme": "redis-sentinel",
"addresses": "redis-sentinel-1:26379,redis-sentinel-2:26379,redis-sentinel-3:26379",
"master_name": "mymaster",
"username": "",
"password": "",
"database": "0"
},
"queue_driver": "redis",
"server": {
"http": {
"ssl": false,
"port": 5005,
"ingest_port": 5006,
"worker_port": 5007,
"socket_port": 5008,
"domain_port": 5009
}
},
"env": "development",
"logger": { "level": "info" },
"host": "http://localhost:5005",
"license_key": "<insert-license-key>",
"license_service": { "host": "https://overwatch.getconvoy.cloud" }
}