Fixed typo in rtc_config_example.json#345
Fixed typo in rtc_config_example.json#345shommey wants to merge 1 commit intoschlagmichdoch:masterfrom
Conversation
"urls": "turns:<DOMAIN>:5349" changed to "urls": "turn:<DOMAIN>:5349"
|
If you want to implement TURN without additional TLS encryption (which is fine) you should use PairDrop/turnserver_example.conf Line 12 in ce3d569 So I can't merge this PR as it is. Maybe the Where did you take a look for the configuration? I guess this could also be solved by a simple reference of the different versions ( |
|
I see, sorry for the mix up then. |
|
Sorry for the late reply. Trying to catch up with the issue built-up.
How about we duplicate the turn server part and describe it in the "domain name"? {
"sdpSemantics": "unified-plan",
"iceServers": [
{
"urls": "stun:<DOMAIN-OF-STUN-SERVER>:3478"
},
{
"urls": "turn:<DOMAIN-OF-TURN-SERVER>:5349",
"username": "username",
"credential": "password"
},
{
"urls": "turns:<DOMAIN-OF-TURN-OVER-TLS-SERVER>:5349",
"username": "username",
"credential": "password"
}
]
} |
schlagmichdoch
left a comment
There was a problem hiding this comment.
turn over tls description. See comment in conversation
"urls": "turns::5349" changed to
"urls": "turn::5349"
This little oversight costed me a few hours of my life I'll never get back. :)