forked from edumeet/edumeet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
44 lines (37 loc) · 916 Bytes
/
config.example.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
{
"listeningPort" : "443",
"listeningHost" : "host.domain.tld",
"fileTracker" : "wss://tracker.openwebtorrent.com",
"tls" : {
"cert" : "./certs/edumeet-demo-cert.pem",
"key" : "./certs/edumeet-demo-key.pem"
},
"turnAPIKey" : "Your API key",
"turnAPIURI" : "https://host.domain.tld/turn",
"backupTurnServers" : {
"urls": [ "turn:host.domain.tld:443?transport=tcp" ],
"username" : "Your username",
"credential" : "Your's credential"
},
"redisOptions": {
"host" : "127.0.0.1",
"port" : "6379",
"password" : "_REDIS_PASSWORD_"
},
"prometheus" : {
"enabled" : "true",
"deidentify" : "true",
"numeric" : "true",
"listen" : "host.domain.tld"
},
"mediasoup" : {
"webRtcTransport" : {
"listenIps" : [
{
"ip": "PUBLIC_IP_ADDRESS",
"announcedIp" : ""
}
]
}
}
}