Forked from crapthings/gist:18fe20fe7fbeb25007a88fd4ee3f06f8
Last active
December 1, 2021 11:48
-
-
Save ndotie/6a4ced52fa6867f9c2ebf6b1b15ab916 to your computer and use it in GitHub Desktop.
webRTC stun / turn server list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice | |
//=========== WORKING TURN SERVER =========== | |
SOME COOL CRAZY TRICKS ABOUT WEBRTC THIS LINK https://github.com/muaz-khan | |
{ | |
url: 'turn:numb.viagenie.ca', | |
credential: 'muazkh', | |
username: '[email protected]' | |
}, | |
//========== END OF WORKING TURN SERVER ========= | |
{ | |
url: 'turn:192.158.29.39:3478?transport=udp', | |
credential: 'JZEOEt2V3Qb0y27GRntt2u2PAYA=', | |
username: '28224511:1379330808' | |
}, | |
{ | |
url: 'turn:192.158.29.39:3478?transport=tcp', | |
credential: 'JZEOEt2V3Qb0y27GRntt2u2PAYA=', | |
username: '28224511:1379330808' | |
}, | |
{ | |
url: 'turn:turn.bistri.com:80', | |
credential: 'homeo', | |
username: 'homeo' | |
}, | |
{ | |
url: 'turn:turn.anyfirewall.com:443?transport=tcp', | |
credential: 'webrtc', | |
username: 'webrtc' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment