mirror of
https://github.com/edumeet/edumeet.git
synced 2026-01-23 02:34:58 +00:00
- added toml config template - app & server README.md files moved under config directories - documentation update (configuration section)
30 lines
665 B
TOML
30 lines
665 B
TOML
listeningPort = "443"
|
|
listeningHost = "host.domain.tld"
|
|
fileTracker = "wss://tracker.openwebtorrent.com"
|
|
turnAPIKey = "Your API key"
|
|
turnAPIURI = "https://host.domain.tld/turn"
|
|
|
|
[tls]
|
|
cert = "/opt/edumeet/server/certs/cert.pem"
|
|
key = "/opt/edumeet/server/certs/privkey.pem"
|
|
|
|
[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 = ""
|
|
|