mirror of
https://github.com/xtr-dev/rondevu-demo.git
synced 2025-12-10 02:43:23 +00:00
Update TURN server credentials for ronde.vu
This commit is contained in:
12
src/App.jsx
12
src/App.jsx
@@ -7,16 +7,12 @@ const API_URL = 'https://api.ronde.vu';
|
|||||||
const RTC_CONFIG = {
|
const RTC_CONFIG = {
|
||||||
iceServers: [
|
iceServers: [
|
||||||
{
|
{
|
||||||
urls: [
|
urls: ["stun:stun.ronde.vu:3478"]
|
||||||
"stun:stun.ronde.vu:3478"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
urls: [
|
urls: ["turn:turn.ronde.vu:3478"],
|
||||||
"turn:turn.ronde.vu:3478"
|
username: "webrtcuser",
|
||||||
],
|
credential: "supersecretpassword"
|
||||||
username: "ignored", // With static auth secret, username is ignored by Coturn
|
|
||||||
credential: "ignored" // Credential also ignored; long-term shared secret is used server-side
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user