Hello friends,
We have a debian server on which I have installed Coturn and would like to use it in conjunction with EasyRTC. Unfortunately, I don't understand how to configure Coturn to work with EasyRTC, where I have to specify the STUN and TURN servers. Currently, when I give the command turnserver, I can see that port 3478 is busy. So I guess I need to change the stun and turn servers port. My main problem is, what are the credentials for Coturn installed on the server, are they for the Linux user on the system?
Below is the example format I am trying to add. I have my IP-address, but nothing else. Link for easyrtc config :
EasyRTC config
var myIceServers = [
{"url":"stun:[ADDRESS]:[PORT]"},
{
"url":"turn:[ADDRESS]:[PORT]",
"username":"[USERNAME]",
"credential":"[CREDENTIAL]"
},
{
"url":"turn:[ADDRESS]:[PORT][?transport=tcp]",
"username":"[USERNAME]",
"credential":"[CREDENTIAL]"
}
];
Any information required on my part, kindly let me know. Thank you.