From b8637ed8adeab9cf8886cc0460ca74d77591718a Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 19:57:09 +0100 Subject: [PATCH] Update ICE servers to use expressturn.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switched from metered.ca to expressturn.com TURN server to avoid 701 host lookup errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 6021a13..9bbc5b7 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,21 +6,13 @@ 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: 'stun:stun.l.google.com:19302'}, + {urls: 'stun:stun1.l.google.com:19302'}, { - urls: "stun:stun.relay.metered.ca:80", - }, - { - urls: "turn:standard.relay.metered.ca:80", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, - { - urls: "turn:standard.relay.metered.ca:443", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, + urls: 'turn:relay1.expressturn.com:3480', + username: 'ef13B1E5PH265HK1N2', + credential: 'TTcTPEy3ndxsS0Gp' + } ] };