您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

config.js 1.2KB

12345678910111213141516171819202122232425
  1. var config = {
  2. hosts: {
  3. domain: 'jitsi-meet.example.com',
  4. //anonymousdomain: 'guest.example.com',
  5. muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
  6. bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
  7. //call_control: 'callcontrol.jitsi-meet.example.com'
  8. },
  9. // getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
  10. // useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
  11. // useIPv6: true, // ipv6 support. use at your own risk
  12. useNicks: false,
  13. bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
  14. desktopSharing: 'ext', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
  15. chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
  16. minChromeExtVersion: '0.1', // Required version of Chrome extension
  17. enableRtpStats: true, // Enables RTP stats processing
  18. openSctp: true, // Toggle to enable/disable SCTP channels
  19. channelLastN: -1, // The default value of the channel attribute last-n.
  20. // useRtcpMux: true,
  21. // useBundle: true,
  22. enableRecording: false,
  23. enableWelcomePage: false,
  24. isBrand: false
  25. };