edumeet/server/config/config.example.json
sd4v1d cbe414f7b6 Generated new certificate.
- new self signed certificate
- updated example configuration files
2022-02-26 23:28:23 +01:00

44 lines
916 B
JSON

{
"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" : ""
}
]
}
}
}