-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.example.json
More file actions
44 lines (44 loc) · 920 Bytes
/
settings.example.json
File metadata and controls
44 lines (44 loc) · 920 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
{
"app": {
"port": 7001,
"keys": "YOUR_APP_KEYS_HERE",
"nodeEnv": "production"
},
"database": {
"host": "postgres",
"port": 5432,
"username": "postgres",
"password": "YOUR_DB_PASSWORD_HERE",
"database": "streamerhelper",
"ssl": false
},
"redis": {
"host": "redis",
"port": 6379,
"password": "",
"db": 0
},
"s3": {
"endpoint": "http://minio:9000",
"region": "us-east-1",
"accessKey": "minioadmin",
"secretKey": "YOUR_S3_SECRET_HERE",
"bucket": "streamerhelper-archive"
},
"recorder": {
"segmentDuration": 10,
"cacheMaxSegments": 3,
"heartbeatInterval": 5,
"heartbeatTimeout": 10,
"maxRecordingTime": 86400
},
"poller": {
"checkInterval": 60,
"totalInstances": 1,
"concurrency": 5
},
"upload": {
"defaultTid": 171,
"defaultTitleTemplate": "{streamerName}的直播录像 {date}"
}
}