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 3.4KB

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