Test with STUN-only (no TURN) to verify ICE candidate fix

This commit is contained in:
2025-11-15 14:18:29 +01:00
parent c849f6a109
commit 2d1b2e8ff4

View File

@@ -6,17 +6,8 @@ const API_URL = 'https://api.ronde.vu';
const RTC_CONFIG = { const RTC_CONFIG = {
iceServers: [ iceServers: [
{ {urls: 'stun:stun.l.google.com:19302'},
urls: ["stun:57.129.61.67:3478"] {urls: 'stun:stun1.l.google.com:19302'}
},
{
urls: [
"turn:57.129.61.67:3478?transport=udp",
"turn:57.129.61.67:3478?transport=tcp"
],
username: "webrtcuser",
credential: "supersecretpassword"
}
] ]
}; };