2013-12-16 12:22:23 +01:00
|
|
|
var config = {
|
|
|
|
|
hosts: {
|
2015-03-09 17:58:11 +01:00
|
|
|
domain: 'jitsi-meet.example.com',
|
2014-08-05 12:13:21 +03:00
|
|
|
//anonymousdomain: 'guest.example.com',
|
2015-03-09 17:58:11 +01:00
|
|
|
muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
|
|
|
|
|
bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
|
2014-12-30 19:56:15 +02:00
|
|
|
//jirecon: 'jirecon.jitsi-meet.example.com',
|
2014-12-02 20:09:24 +01:00
|
|
|
//call_control: 'callcontrol.jitsi-meet.example.com',
|
2014-12-05 16:43:04 +01:00
|
|
|
//focus: 'focus.jitsi-meet.example.com' - defaults to 'focus.jitsi-meet.example.com'
|
2013-12-16 12:22:23 +01:00
|
|
|
},
|
2014-01-10 22:06:20 +01:00
|
|
|
// getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
|
2014-01-26 15:43:43 +01:00
|
|
|
// useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
|
|
|
|
|
// useIPv6: true, // ipv6 support. use at your own risk
|
2013-12-16 12:22:23 +01:00
|
|
|
useNicks: false,
|
2015-03-09 17:58:11 +01:00
|
|
|
bosh: '//jitsi-meet.example.com/http-bind', // FIXME: use xep-0156 for that
|
2014-09-25 12:17:34 +02:00
|
|
|
clientNode: 'http://jitsi.org/jitsimeet', // The name of client node advertised in XEP-0115 'c' stanza
|
2014-12-05 16:43:04 +01:00
|
|
|
//focusUserJid: 'focus@auth.jitsi-meet.example.com', // The real JID of focus participant - can be overridden here
|
2015-03-09 17:58:11 +01:00
|
|
|
//defaultSipNumber: '', // Default SIP number
|
2014-03-17 14:00:47 +01:00
|
|
|
desktopSharing: 'ext', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
|
|
|
|
|
chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
|
2014-09-09 09:05:42 +02:00
|
|
|
desktopSharingSources: ['screen', 'window'],
|
2014-06-05 13:09:31 +02:00
|
|
|
minChromeExtVersion: '0.1', // Required version of Chrome extension
|
2014-07-16 01:36:51 +03:00
|
|
|
openSctp: true, // Toggle to enable/disable SCTP channels
|
2015-02-09 14:51:25 +02:00
|
|
|
disableStats: false,
|
|
|
|
|
disableAudioLevels: false,
|
2014-08-22 17:37:11 +02:00
|
|
|
channelLastN: -1, // The default value of the channel attribute last-n.
|
2014-10-01 14:24:37 +03:00
|
|
|
adaptiveLastN: false,
|
2014-11-04 14:27:23 +01:00
|
|
|
adaptiveSimulcast: false,
|
2015-03-09 17:58:11 +01:00
|
|
|
useRtcpMux: true,
|
|
|
|
|
useBundle: true,
|
|
|
|
|
enableRecording: false,
|
2014-11-12 10:35:44 +02:00
|
|
|
enableWelcomePage: true,
|
2014-11-28 16:23:57 +01:00
|
|
|
enableSimulcast: false,
|
2015-03-26 11:29:40 +01:00
|
|
|
enableFirefoxSupport: false, //firefox support is still experimental and
|
2015-03-12 16:33:27 +01:00
|
|
|
// will work when simulcast is *disabled* and rtcpMux & bundle are *enabled*.
|
2015-03-12 17:51:31 +01:00
|
|
|
logStats: false, // Enable logging of PeerConnection stats via the focus
|
|
|
|
|
/*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
|
|
|
|
|
'During that time service will not be available. ' +
|
|
|
|
|
'Apologise for inconvenience.'*/
|
2014-07-01 16:02:34 +02:00
|
|
|
};
|