From c849f6a109fedff4f15edd6303f24b5e2d82896c Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 15 Nov 2025 13:38:04 +0100 Subject: [PATCH] Revert to custom TURN server at 57.129.61.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Back to using custom STUN/TURN server with IP address to avoid DNS lookup issues. Note: TURN relay still requires firewall port range to be opened. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 22426c5..2578c84 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,12 +6,16 @@ const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ - {urls: 'stun:stun.l.google.com:19302'}, - {urls: 'stun:stun1.l.google.com:19302'}, { - urls: 'turn:relay1.expressturn.com:3480', - username: 'ef13B1E5PH265HK1N2', - credential: 'TTcTPEy3ndxsS0Gp' + urls: ["stun:57.129.61.67:3478"] + }, + { + urls: [ + "turn:57.129.61.67:3478?transport=udp", + "turn:57.129.61.67:3478?transport=tcp" + ], + username: "webrtcuser", + credential: "supersecretpassword" } ] };