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:
2025-11-15 12:31:07 +01:00
parent 9a424b6015
commit e4868c085b

View File

@@ -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"