From 348a7321787cbed7144f54f9f503ec28cb2deeaa Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 22:31:15 +0100 Subject: [PATCH] Switch to custom STUN/TURN servers at ronde.vu --- src/App.jsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 8dfa452..51dd748 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,13 +6,18 @@ 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:stun.ronde.vu:3478" + ] }, + { + urls: [ + "turn:turn.ronde.vu:3478" + ], + username: "ignored", // With static auth secret, username is ignored by Coturn + credential: "ignored" // Credential also ignored; long-term shared secret is used server-side + } ] };