adding a second stun server provided by the openrelayproject to the RTCPeer.config

This commit is contained in:
schlagmichdoch 2023-01-17 11:27:07 +01:00
parent b9dfa67740
commit 24fdff8a8a

View file

@ -825,9 +825,12 @@ RTCPeer.config = {
urls: 'stun:stun.l.google.com:19302' urls: 'stun:stun.l.google.com:19302'
}, },
{ {
urls: "turn:openrelay.metered.ca:443", urls: 'stun:openrelay.metered.ca:80'
username: "openrelayproject", },
credential: "openrelayproject", {
urls: 'turn:openrelay.metered.ca:443',
username: 'openrelayproject',
credential: 'openrelayproject',
}, },
] ]
} }