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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* jshint -W101 */
  2. var config = {
  3. // configLocation: './config.json', // see ./modules/HttpConfigFetch.js
  4. hosts: {
  5. domain: 'jitsi-meet.example.com',
  6. //anonymousdomain: 'guest.example.com',
  7. // authdomain: 'jitsi-meet.example.com', // defaults to <domain>
  8. muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
  9. bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
  10. //jirecon: 'jirecon.jitsi-meet.example.com',
  11. //call_control: 'callcontrol.jitsi-meet.example.com',
  12. //focus: 'focus.jitsi-meet.example.com' - defaults to 'focus.jitsi-meet.example.com'
  13. },
  14. // getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
  15. // useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
  16. // useIPv6: true, // ipv6 support. use at your own risk
  17. useNicks: false,
  18. bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
  19. clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza
  20. //focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
  21. //defaultSipNumber: '', // Default SIP number
  22. // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
  23. desktopSharingChromeMethod: 'ext',
  24. // The ID of the jidesha extension for Chrome.
  25. desktopSharingChromeExtId: 'diibjkoicjeejcmhdnailmkgecihlobk',
  26. // The media sources to use when using screen sharing with the Chrome
  27. // extension.
  28. desktopSharingChromeSources: ['screen', 'window'],
  29. // Required version of Chrome extension
  30. desktopSharingChromeMinExtVersion: '0.1',
  31. // The ID of the jidesha extension for Firefox. If null, we assume that no
  32. // extension is required.
  33. desktopSharingFirefoxExtId: null,
  34. // Whether desktop sharing should be disabled on Firefox.
  35. desktopSharingFirefoxDisabled: true,
  36. // The maximum version of Firefox which requires a jidesha extension.
  37. // Example: if set to 41, we will require the extension for Firefox versions
  38. // up to and including 41. On Firefox 42 and higher, we will run without the
  39. // extension.
  40. // If set to -1, an extension will be required for all versions of Firefox.
  41. desktopSharingFirefoxMaxVersionExtRequired: -1,
  42. // The URL to the Firefox extension for desktop sharing.
  43. desktopSharingFirefoxExtensionURL: null,
  44. // Disables ICE/UDP by filtering out local and remote UDP candidates in signalling.
  45. webrtcIceUdpDisable: false,
  46. // Disables ICE/TCP by filtering out local and remote TCP candidates in signalling.
  47. webrtcIceTcpDisable: false,
  48. openSctp: true, // Toggle to enable/disable SCTP channels
  49. disableStats: false,
  50. disableAudioLevels: false,
  51. channelLastN: -1, // The default value of the channel attribute last-n.
  52. adaptiveLastN: false,
  53. adaptiveSimulcast: false,
  54. enableRecording: false,
  55. enableWelcomePage: true,
  56. enableSimulcast: false, // blocks FF support
  57. logStats: false, // Enable logging of PeerConnection stats via the focus
  58. // requireDisplayName: true,//Forces the participants that doesn't have display name to enter it when they enter the room.
  59. // startAudioMuted: 10, //every participant after the Nth will start audio muted
  60. // startVideoMuted: 10, //every participant after the Nth will start video muted
  61. // defaultLanguage: "en",
  62. // To enable sending statistics to callstats.io you should provide Applicaiton ID and Secret.
  63. // callStatsID: "",//Application ID for callstats.io API
  64. // callStatsSecret: ""//Secret for callstats.io API
  65. /*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
  66. 'During that time service will not be available. ' +
  67. 'Apologise for inconvenience.'*/
  68. disableThirdPartyRequests: false
  69. };