Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

config.js 2.1KB

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