From 1f1502940babada300113369a2ef3c6bc396f15f Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 22:37:10 +0100 Subject: [PATCH] Update TURN server credentials for ronde.vu --- src/App.jsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 51dd748..e95604c 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -7,16 +7,12 @@ const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ { - urls: [ - "stun:stun.ronde.vu:3478" - ] + 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 + urls: ["turn:turn.ronde.vu:3478"], + username: "webrtcuser", + credential: "supersecretpassword" } ] };