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.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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, // required for FF support
  30. useBundle: true, // required for FF support
  31. enableRecording: false,
  32. enableWelcomePage: true,
  33. enableSimulcast: false, // blocks FF support
  34. logStats: false, // Enable logging of PeerConnection stats via the focus
  35. // startAudioMuted: 10, //every participant after the Nth will start audio muted
  36. // startVideoMuted: 10, //every participant after the Nth will start video muted
  37. // defaultLanguage: "en",
  38. /*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
  39. 'During that time service will not be available. ' +
  40. 'Apologise for inconvenience.'*/
  41. };