You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.js 2.0KB

12345678910111213141516171819202122232425262728293031323334353637
  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. //jirecon: 'jirecon.jitsi-meet.example.com',
  8. //call_control: 'callcontrol.jitsi-meet.example.com',
  9. //focus: 'focus.jitsi-meet.example.com' - defaults to 'focus.jitsi-meet.example.com'
  10. },
  11. // getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
  12. // useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
  13. // useIPv6: true, // ipv6 support. use at your own risk
  14. useNicks: false,
  15. bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
  16. clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza
  17. //focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
  18. //defaultSipNumber: '', // Default SIP number
  19. desktopSharing: 'ext', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
  20. chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
  21. desktopSharingSources: ['screen', 'window'],
  22. minChromeExtVersion: '0.1', // Required version of Chrome extension
  23. openSctp: true, // Toggle to enable/disable SCTP channels
  24. disableStats: false,
  25. disableAudioLevels: false,
  26. channelLastN: -1, // The default value of the channel attribute last-n.
  27. adaptiveLastN: false,
  28. adaptiveSimulcast: false,
  29. useRtcpMux: true,
  30. useBundle: true,
  31. enableRecording: false,
  32. enableWelcomePage: true,
  33. enableSimulcast: false,
  34. enableFirefoxSupport: true, //firefox support is still experimental and
  35. // will work when simulcast is *disabled* and rtcpMux & bundle are *enabled*.
  36. logStats: false // Enable logging of PeerConnection stats via the focus
  37. };