PairDrop/rtc_config_example.json
shommey ba95d059f5
Fixed typo in rtc_config_example.json
"urls": "turns:<DOMAIN>:5349" changed to
"urls": "turn:<DOMAIN>:5349"
2024-10-28 00:20:37 +01:00

13 lines
217 B
JSON

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