mirror of
https://github.com/xtr-dev/rondevu-demo.git
synced 2025-12-10 10:53:22 +00:00
Fix DNS lookup errors by using IP address for STUN/TURN servers
Changed from domain names (stun.ronde.vu/turn.ronde.vu) to IP address (57.129.61.67) to resolve browser DNS lookup failures (error 701). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -7,12 +7,12 @@ const API_URL = 'https://api.ronde.vu';
|
||||
const RTC_CONFIG = {
|
||||
iceServers: [
|
||||
{
|
||||
urls: ["stun:stun.ronde.vu:3478"]
|
||||
urls: ["stun:57.129.61.67:3478"]
|
||||
},
|
||||
{
|
||||
urls: [
|
||||
"turn:turn.ronde.vu:3478?transport=udp",
|
||||
"turn:turn.ronde.vu:3478?transport=tcp"
|
||||
"turn:57.129.61.67:3478?transport=udp",
|
||||
"turn:57.129.61.67:3478?transport=tcp"
|
||||
],
|
||||
username: "webrtcuser",
|
||||
credential: "supersecretpassword"
|
||||
|
||||
Reference in New Issue
Block a user