From 7a4862f399aa3d5050e55e2d91fc8b81f4a2b6ff Mon Sep 17 00:00:00 2001 From: Jeremy Kahn Date: Tue, 25 Jul 2023 09:17:05 -0500 Subject: [PATCH] feat(config): [closes #112] use 188.148.133.173 for TURN server --- src/config/rtcConfig.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/config/rtcConfig.ts b/src/config/rtcConfig.ts index ca27bb2..909cd21 100644 --- a/src/config/rtcConfig.ts +++ b/src/config/rtcConfig.ts @@ -11,22 +11,22 @@ export const rtcConfig: RTCConfiguration = { // CONNECTED TO THE INTERNET. iceServers: [ { - urls: 'stun:openrelay.metered.ca:80', + urls: 'stun:188.148.133.173:3478', }, { - urls: 'turn:openrelay.metered.ca:80', - username: 'openrelayproject', - credential: 'openrelayproject', + urls: 'turn:188.148.133.173:3478', + username: 'c386d75b5633456cb3bc13812858098d', + credential: '58fd06d85fe14c0f9f46220748b0f565', }, { - urls: 'turn:openrelay.metered.ca:443', - username: 'openrelayproject', - credential: 'openrelayproject', + urls: 'turn:188.148.133.173:3478', + username: '0e2f563eacfd4c4a82ea239b04d1d494', + credential: '8179b4b533f240ad9fe590663bef1bc9', }, { - urls: 'turn:openrelay.metered.ca:443?transport=tcp', - username: 'openrelayproject', - credential: 'openrelayproject', + urls: 'turn:188.148.133.173:3478', + username: 'feab95c3fcd147a2a96a3d3590bf9cda', + credential: '654cafd885424b7fb974e65f631f25f9', }, ], }