PairDrop/rtc_config_example.json
schlagmichdoch 1c79290ad6 - add guide to documentation and example files to repository to run coturn alongside PairDrop via Docker Compose
- enable TURN over TLS
- modified the .gitignore to ignore files with user-data
- should fix #105
- partly cherry-picked from #106

Co-authored-by: xundeenergie <xundeenergie@users.noreply.github.com>
2023-10-28 04:46:02 +02:00

13 lines
218 B
JSON

{
"sdpSemantics": "unified-plan",
"iceServers": [
{
"urls": "stun:<DOMAIN>:3478"
},
{
"urls": "turns:<DOMAIN>:5349",
"username": "username",
"credential": "password"
}
]
}