浏览代码

add default STUN servers to config.js

master
paweldomas 8 年前
父节点
当前提交
fba086134d
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7
    0
      config.js

+ 7
- 0
config.js 查看文件

20
     //focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
20
     //focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
21
     //defaultSipNumber: '', // Default SIP number
21
     //defaultSipNumber: '', // Default SIP number
22
 
22
 
23
+    // The STUN servers that will be used in the peer to peer connections
24
+    p2pStunServers: [
25
+        { urls: "stun:stun.l.google.com:19302" },
26
+        { urls: "stun:stun1.l.google.com:19302" },
27
+        { urls: "stun:stun2.l.google.com:19302" }
28
+    ],
29
+
23
     // The ID of the jidesha extension for Chrome.
30
     // The ID of the jidesha extension for Chrome.
24
     desktopSharingChromeExtId: null,
31
     desktopSharingChromeExtId: null,
25
     // Whether desktop sharing should be disabled on Chrome.
32
     // Whether desktop sharing should be disabled on Chrome.

正在加载...
取消
保存