diff options
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r-- | client-web/source/index.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index 159bcce..baabdb4 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -13,8 +13,14 @@ export const ROOM_CONTAINER = ediv({ class: "room" }) export const RTC_CONFIG: RTCConfiguration = { iceServers: [ - { urls: ["stun:meet.metamuffin.org:16900"] }, - { urls: ["stun:stun1.l.google.com:19302", "stun:stun2.l.google.com:19302"] } // google stun!? + { + urls: [ + "turn:meet.metamuffin.org:16900", + "stun:meet.metamuffin.org:16900" + ], + username: "keksmeet", + credential: "ujCmetg6bm0" + }, ], iceCandidatePoolSize: 10, } |