Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* jshint maxlen:false */
  2. var config = { // eslint-disable-line no-unused-vars
  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. //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. // The STUN servers that will be used in the peer to peer connections
  22. p2pStunServers: [
  23. { urls: "stun:stun.l.google.com:19302" },
  24. { urls: "stun:stun1.l.google.com:19302" },
  25. { urls: "stun:stun2.l.google.com:19302" }
  26. ],
  27. // The ID of the jidesha extension for Chrome.
  28. desktopSharingChromeExtId: null,
  29. // Whether desktop sharing should be disabled on Chrome.
  30. desktopSharingChromeDisabled: true,
  31. // The media sources to use when using screen sharing with the Chrome
  32. // extension.
  33. desktopSharingChromeSources: ['screen', 'window', 'tab'],
  34. // Required version of Chrome extension
  35. desktopSharingChromeMinExtVersion: '0.1',
  36. // The ID of the jidesha extension for Firefox. If null, we assume that no
  37. // extension is required.
  38. desktopSharingFirefoxExtId: null,
  39. // Whether desktop sharing should be disabled on Firefox.
  40. desktopSharingFirefoxDisabled: true,
  41. // The maximum version of Firefox which requires a jidesha extension.
  42. // Example: if set to 41, we will require the extension for Firefox versions
  43. // up to and including 41. On Firefox 42 and higher, we will run without the
  44. // extension.
  45. // If set to -1, an extension will be required for all versions of Firefox.
  46. desktopSharingFirefoxMaxVersionExtRequired: 51,
  47. // The URL to the Firefox extension for desktop sharing.
  48. desktopSharingFirefoxExtensionURL: null,
  49. // Disables ICE/UDP by filtering out local and remote UDP candidates in signalling.
  50. webrtcIceUdpDisable: false,
  51. // Disables ICE/TCP by filtering out local and remote TCP candidates in signalling.
  52. webrtcIceTcpDisable: false,
  53. openSctp: true, // Toggle to enable/disable SCTP channels
  54. disableStats: false,
  55. disableAudioLevels: false,
  56. channelLastN: -1, // The default value of the channel attribute last-n.
  57. enableRecording: false,
  58. enableWelcomePage: true,
  59. //enableClosePage: false, // enabling the close page will ignore the welcome
  60. // page redirection when call is hangup
  61. disableSimulcast: false,
  62. // requireDisplayName: true, // Forces the participants that doesn't have display name to enter it when they enter the room.
  63. // startAudioMuted: 10, // every participant after the Nth will start audio muted
  64. // startVideoMuted: 10, // every participant after the Nth will start video muted
  65. // defaultLanguage: "en",
  66. // To enable sending statistics to callstats.io you should provide Applicaiton ID and Secret.
  67. // callStatsID: "", // Application ID for callstats.io API
  68. // callStatsSecret: "", // Secret for callstats.io API
  69. /*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
  70. 'During that time service will not be available. ' +
  71. 'Apologise for inconvenience.',*/
  72. disableThirdPartyRequests: false,
  73. minHDHeight: 540,
  74. // If true - all users without token will be considered guests and all users
  75. // with token will be considered non-guests. Only guests will be allowed to
  76. // edit their profile.
  77. enableUserRolesBasedOnToken: false,
  78. // Suspending video might cause problems with audio playback. Disabling until these are fixed.
  79. disableSuspendVideo: true,
  80. // disables or enables RTX (RFC 4588) (defaults to false).
  81. disableRtx: false,
  82. // Sets the preferred resolution (height) for local video. Defaults to 360.
  83. resolution: 720,
  84. // Enables peer to peer mode. When enabled system will try to establish
  85. // direct connection given that there are exactly 2 participants in
  86. // the room. If that succeeds the conference will stop sending data through
  87. // the JVB and use the peer to peer connection instead. When 3rd participant
  88. // joins the conference will be moved back to the JVB connection.
  89. //enableP2P: true
  90. // How long we're going to wait, before going back to P2P after
  91. // the 3rd participant has left the conference (to filter out page reload)
  92. //backToP2PDelay: 5
  93. };