Update TURN server credentials for ronde.vu

This commit is contained in:
2025-11-14 22:37:10 +01:00
parent 348a732178
commit 1f1502940b

View File

@@ -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"
}
]
};