Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

config.js 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. var config = {
  2. // configLocation: './config.json', // see ./modules/HttpConfigFetch.js
  3. hosts: {
  4. domain: 'jitsi-meet.example.com',
  5. //anonymousdomain: 'guest.example.com',
  6. muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
  7. bridge: 'jitsi-videobridge.jitsi-meet.example.com', // 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: '//jitsi-meet.example.com/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: '', // Default SIP number
  20. desktopSharing: 'ext', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
  21. chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
  22. desktopSharingSources: ['screen', 'window'],
  23. minChromeExtVersion: '0.1', // Required version of Chrome extension
  24. openSctp: true, // Toggle to enable/disable SCTP channels
  25. disableStats: false,
  26. disableAudioLevels: false,
  27. channelLastN: -1, // The default value of the channel attribute last-n.
  28. adaptiveLastN: false,
  29. adaptiveSimulcast: false,
  30. enableRecording: false,
  31. enableWelcomePage: true,
  32. enableSimulcast: false, // blocks FF support
  33. logStats: false, // Enable logging of PeerConnection stats via the focus
  34. // requireDisplayName: true,//Forces the participants that doesn't have display name to enter it when they enter the room.
  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. // To enable sending statistics to callstats.io you should provide Applicaiton ID and Secret.
  39. // callStatsID: "",//Application ID for callstats.io API
  40. // callStatsSecret: ""//Secret for callstats.io API
  41. /*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
  42. 'During that time service will not be available. ' +
  43. 'Apologise for inconvenience.'*/
  44. };