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.

config.js 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. /* eslint-disable no-unused-vars, no-var */
  2. var config = {
  3. // Connection
  4. //
  5. hosts: {
  6. // XMPP domain.
  7. domain: 'jitsi-meet.example.com',
  8. // When using authentication, domain for guest users.
  9. // anonymousdomain: 'guest.example.com',
  10. // Domain for authenticated users. Defaults to <domain>.
  11. // authdomain: 'jitsi-meet.example.com',
  12. // Focus component domain. Defaults to focus.<domain>.
  13. // focus: 'focus.jitsi-meet.example.com',
  14. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
  15. muc: 'conference.jitsi-meet.example.com'
  16. },
  17. // BOSH URL. FIXME: use XEP-0156 to discover it.
  18. bosh: '//jitsi-meet.example.com/http-bind',
  19. // Websocket URL
  20. // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',
  21. // The name of client node advertised in XEP-0115 'c' stanza
  22. clientNode: 'http://jitsi.org/jitsimeet',
  23. // The real JID of focus participant - can be overridden here
  24. // Do not change username - FIXME: Make focus username configurable
  25. // https://github.com/jitsi/jitsi-meet/issues/7376
  26. // focusUserJid: 'focus@auth.jitsi-meet.example.com',
  27. // Testing / experimental features.
  28. //
  29. testing: {
  30. // Disables the End to End Encryption feature. Useful for debugging
  31. // issues related to insertable streams.
  32. // disableE2EE: false,
  33. // P2P test mode disables automatic switching to P2P when there are 2
  34. // participants in the conference.
  35. p2pTestMode: false
  36. // Enables the test specific features consumed by jitsi-meet-torture
  37. // testMode: false
  38. // Disables the auto-play behavior of *all* newly created video element.
  39. // This is useful when the client runs on a host with limited resources.
  40. // noAutoPlayVideo: false
  41. // Enable / disable 500 Kbps bitrate cap on desktop tracks. When enabled,
  42. // simulcast is turned off for the desktop share. If presenter is turned
  43. // on while screensharing is in progress, the max bitrate is automatically
  44. // adjusted to 2.5 Mbps. This takes a value between 0 and 1 which determines
  45. // the probability for this to be enabled.
  46. // capScreenshareBitrate: 1 // 0 to disable
  47. // Enable callstats only for a percentage of users.
  48. // This takes a value between 0 and 100 which determines the probability for
  49. // the callstats to be enabled.
  50. // callStatsThreshold: 5 // enable callstats for 5% of the users.
  51. },
  52. // Disables ICE/UDP by filtering out local and remote UDP candidates in
  53. // signalling.
  54. // webrtcIceUdpDisable: false,
  55. // Disables ICE/TCP by filtering out local and remote TCP candidates in
  56. // signalling.
  57. // webrtcIceTcpDisable: false,
  58. // Media
  59. //
  60. // Audio
  61. // Disable measuring of audio levels.
  62. // disableAudioLevels: false,
  63. // audioLevelsInterval: 200,
  64. // Enabling this will run the lib-jitsi-meet no audio detection module which
  65. // will notify the user if the current selected microphone has no audio
  66. // input and will suggest another valid device if one is present.
  67. enableNoAudioDetection: true,
  68. // Enabling this will show a "Save Logs" link in the GSM popover that can be
  69. // used to collect debug information (XMPP IQs, SDP offer/answer cycles)
  70. // about the call.
  71. // enableSaveLogs: false,
  72. // Enabling this will run the lib-jitsi-meet noise detection module which will
  73. // notify the user if there is noise, other than voice, coming from the current
  74. // selected microphone. The purpose it to let the user know that the input could
  75. // be potentially unpleasant for other meeting participants.
  76. enableNoisyMicDetection: true,
  77. // Start the conference in audio only mode (no video is being received nor
  78. // sent).
  79. // startAudioOnly: false,
  80. // Every participant after the Nth will start audio muted.
  81. // startAudioMuted: 10,
  82. // Start calls with audio muted. Unlike the option above, this one is only
  83. // applied locally. FIXME: having these 2 options is confusing.
  84. // startWithAudioMuted: false,
  85. // Enabling it (with #params) will disable local audio output of remote
  86. // participants and to enable it back a reload is needed.
  87. // startSilent: false
  88. // Sets the preferred target bitrate for the Opus audio codec by setting its
  89. // 'maxaveragebitrate' parameter. Currently not available in p2p mode.
  90. // Valid values are in the range 6000 to 510000
  91. // opusMaxAverageBitrate: 20000,
  92. // Enables support for opus-red (redundancy for Opus).
  93. // enableOpusRed: false
  94. // Video
  95. // Sets the preferred resolution (height) for local video. Defaults to 720.
  96. // resolution: 720,
  97. // How many participants while in the tile view mode, before the receiving video quality is reduced from HD to SD.
  98. // Use -1 to disable.
  99. // maxFullResolutionParticipants: 2,
  100. // w3c spec-compliant video constraints to use for video capture. Currently
  101. // used by browsers that return true from lib-jitsi-meet's
  102. // util#browser#usesNewGumFlow. The constraints are independent from
  103. // this config's resolution value. Defaults to requesting an ideal
  104. // resolution of 720p.
  105. // constraints: {
  106. // video: {
  107. // height: {
  108. // ideal: 720,
  109. // max: 720,
  110. // min: 240
  111. // }
  112. // }
  113. // },
  114. // Enable / disable simulcast support.
  115. // disableSimulcast: false,
  116. // Enable / disable layer suspension. If enabled, endpoints whose HD
  117. // layers are not in use will be suspended (no longer sent) until they
  118. // are requested again.
  119. // enableLayerSuspension: false,
  120. // Every participant after the Nth will start video muted.
  121. // startVideoMuted: 10,
  122. // Start calls with video muted. Unlike the option above, this one is only
  123. // applied locally. FIXME: having these 2 options is confusing.
  124. // startWithVideoMuted: false,
  125. // If set to true, prefer to use the H.264 video codec (if supported).
  126. // Note that it's not recommended to do this because simulcast is not
  127. // supported when using H.264. For 1-to-1 calls this setting is enabled by
  128. // default and can be toggled in the p2p section.
  129. // This option has been deprecated, use preferredCodec under videoQuality section instead.
  130. // preferH264: true,
  131. // If set to true, disable H.264 video codec by stripping it out of the
  132. // SDP.
  133. // disableH264: false,
  134. // Desktop sharing
  135. // Optional desktop sharing frame rate options. Default value: min:5, max:5.
  136. // desktopSharingFrameRate: {
  137. // min: 5,
  138. // max: 5
  139. // },
  140. // Try to start calls with screen-sharing instead of camera video.
  141. // startScreenSharing: false,
  142. // Recording
  143. // Whether to enable file recording or not.
  144. // fileRecordingsEnabled: false,
  145. // Enable the dropbox integration.
  146. // dropbox: {
  147. // appKey: '<APP_KEY>' // Specify your app key here.
  148. // // A URL to redirect the user to, after authenticating
  149. // // by default uses:
  150. // // 'https://jitsi-meet.example.com/static/oauth.html'
  151. // redirectURI:
  152. // 'https://jitsi-meet.example.com/subfolder/static/oauth.html'
  153. // },
  154. // When integrations like dropbox are enabled only that will be shown,
  155. // by enabling fileRecordingsServiceEnabled, we show both the integrations
  156. // and the generic recording service (its configuration and storage type
  157. // depends on jibri configuration)
  158. // fileRecordingsServiceEnabled: false,
  159. // Whether to show the possibility to share file recording with other people
  160. // (e.g. meeting participants), based on the actual implementation
  161. // on the backend.
  162. // fileRecordingsServiceSharingEnabled: false,
  163. // Whether to enable live streaming or not.
  164. // liveStreamingEnabled: false,
  165. // Transcription (in interface_config,
  166. // subtitles and buttons can be configured)
  167. // transcribingEnabled: false,
  168. // Enables automatic turning on captions when recording is started
  169. // autoCaptionOnRecord: false,
  170. // Misc
  171. // Default value for the channel "last N" attribute. -1 for unlimited.
  172. channelLastN: -1,
  173. // Provides a way to use different "last N" values based on the number of participants in the conference.
  174. // The keys in an Object represent number of participants and the values are "last N" to be used when number of
  175. // participants gets to or above the number.
  176. //
  177. // For the given example mapping, "last N" will be set to 20 as long as there are at least 5, but less than
  178. // 29 participants in the call and it will be lowered to 15 when the 30th participant joins. The 'channelLastN'
  179. // will be used as default until the first threshold is reached.
  180. //
  181. // lastNLimits: {
  182. // 5: 20,
  183. // 30: 15,
  184. // 50: 10,
  185. // 70: 5,
  186. // 90: 2
  187. // },
  188. // Specify the settings for video quality optimizations on the client.
  189. // videoQuality: {
  190. // // Provides a way to prevent a video codec from being negotiated on the JVB connection. The codec specified
  191. // // here will be removed from the list of codecs present in the SDP answer generated by the client. If the
  192. // // same codec is specified for both the disabled and preferred option, the disable settings will prevail.
  193. // // Note that 'VP8' cannot be disabled since it's a mandatory codec, the setting will be ignored in this case.
  194. // disabledCodec: 'H264',
  195. //
  196. // // Provides a way to set a preferred video codec for the JVB connection. If 'H264' is specified here,
  197. // // simulcast will be automatically disabled since JVB doesn't support H264 simulcast yet. This will only
  198. // // rearrange the the preference order of the codecs in the SDP answer generated by the browser only if the
  199. // // preferred codec specified here is present. Please ensure that the JVB offers the specified codec for this
  200. // // to take effect.
  201. // preferredCodec: 'VP8',
  202. //
  203. // // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
  204. // // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
  205. // // are the max.bitrates to be set on that particular type of stream. The actual send may vary based on
  206. // // the available bandwidth calculated by the browser, but it will be capped by the values specified here.
  207. // // This is currently not implemented on app based clients on mobile.
  208. // maxBitratesVideo: {
  209. // low: 200000,
  210. // standard: 500000,
  211. // high: 1500000
  212. // },
  213. //
  214. // // The options can be used to override default thresholds of video thumbnail heights corresponding to
  215. // // the video quality levels used in the application. At the time of this writing the allowed levels are:
  216. // // 'low' - for the low quality level (180p at the time of this writing)
  217. // // 'standard' - for the medium quality level (360p)
  218. // // 'high' - for the high quality level (720p)
  219. // // The keys should be positive numbers which represent the minimal thumbnail height for the quality level.
  220. // //
  221. // // With the default config value below the application will use 'low' quality until the thumbnails are
  222. // // at least 360 pixels tall. If the thumbnail height reaches 720 pixels then the application will switch to
  223. // // the high quality.
  224. // minHeightForQualityLvl: {
  225. // 360: 'standard',
  226. // 720: 'high'
  227. // },
  228. //
  229. // // Provides a way to resize the desktop track to 720p (if it is greater than 720p) before creating a canvas
  230. // // for the presenter mode (camera picture-in-picture mode with screenshare).
  231. // resizeDesktopForPresenter: false
  232. // },
  233. // // Options for the recording limit notification.
  234. // recordingLimit: {
  235. //
  236. // // The recording limit in minutes. Note: This number appears in the notification text
  237. // // but doesn't enforce the actual recording time limit. This should be configured in
  238. // // jibri!
  239. // limit: 60,
  240. //
  241. // // The name of the app with unlimited recordings.
  242. // appName: 'Unlimited recordings APP',
  243. //
  244. // // The URL of the app with unlimited recordings.
  245. // appURL: 'https://unlimited.recordings.app.com/'
  246. // },
  247. // Disables or enables RTX (RFC 4588) (defaults to false).
  248. // disableRtx: false,
  249. // Disables or enables TCC support in this client (default: enabled).
  250. // enableTcc: true,
  251. // Disables or enables REMB support in this client (default: enabled).
  252. // enableRemb: true,
  253. // Enables ICE restart logic in LJM and displays the page reload overlay on
  254. // ICE failure. Current disabled by default because it's causing issues with
  255. // signaling when Octo is enabled. Also when we do an "ICE restart"(which is
  256. // not a real ICE restart), the client maintains the TCC sequence number
  257. // counter, but the bridge resets it. The bridge sends media packets with
  258. // TCC sequence numbers starting from 0.
  259. // enableIceRestart: false,
  260. // Use TURN/UDP servers for the jitsi-videobridge connection (by default
  261. // we filter out TURN/UDP because it is usually not needed since the
  262. // bridge itself is reachable via UDP)
  263. // useTurnUdp: false
  264. // UI
  265. //
  266. // Hides lobby button
  267. // hideLobbyButton: false,
  268. // Require users to always specify a display name.
  269. // requireDisplayName: true,
  270. // Whether to use a welcome page or not. In case it's false a random room
  271. // will be joined when no room is specified.
  272. enableWelcomePage: true,
  273. // Enabling the close page will ignore the welcome page redirection when
  274. // a call is hangup.
  275. // enableClosePage: false,
  276. // Disable hiding of remote thumbnails when in a 1-on-1 conference call.
  277. // disable1On1Mode: false,
  278. // Default language for the user interface.
  279. // defaultLanguage: 'en',
  280. // Disables profile and the edit of all fields from the profile settings (display name and email)
  281. // disableProfile: false,
  282. // Whether or not some features are checked based on token.
  283. // enableFeaturesBasedOnToken: false,
  284. // When enabled the password used for locking a room is restricted to up to the number of digits specified
  285. // roomPasswordNumberOfDigits: 10,
  286. // default: roomPasswordNumberOfDigits: false,
  287. // Message to show the users. Example: 'The service will be down for
  288. // maintenance at 01:00 AM GMT,
  289. // noticeMessage: '',
  290. // Enables calendar integration, depends on googleApiApplicationClientID
  291. // and microsoftApiApplicationClientID
  292. // enableCalendarIntegration: false,
  293. // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
  294. // prejoinPageEnabled: false,
  295. // If etherpad integration is enabled, setting this to true will
  296. // automatically open the etherpad when a participant joins. This
  297. // does not affect the mobile app since opening an etherpad
  298. // obscures the conference controls -- it's better to let users
  299. // choose to open the pad on their own in that case.
  300. // openSharedDocumentOnJoin: false,
  301. // If true, shows the unsafe room name warning label when a room name is
  302. // deemed unsafe (due to the simplicity in the name) and a password is not
  303. // set or the lobby is not enabled.
  304. // enableInsecureRoomNameWarning: false,
  305. // Whether to automatically copy invitation URL after creating a room.
  306. // Document should be focused for this option to work
  307. // enableAutomaticUrlCopy: false,
  308. // Base URL for a Gravatar-compatible service. Defaults to libravatar.
  309. // gravatarBaseURL: 'https://seccdn.libravatar.org/avatar/';
  310. // Stats
  311. //
  312. // Whether to enable stats collection or not in the TraceablePeerConnection.
  313. // This can be useful for debugging purposes (post-processing/analysis of
  314. // the webrtc stats) as it is done in the jitsi-meet-torture bandwidth
  315. // estimation tests.
  316. // gatherStats: false,
  317. // The interval at which PeerConnection.getStats() is called. Defaults to 10000
  318. // pcStatsInterval: 10000,
  319. // To enable sending statistics to callstats.io you must provide the
  320. // Application ID and Secret.
  321. // callStatsID: '',
  322. // callStatsSecret: '',
  323. // Enables sending participants' display names to callstats
  324. // enableDisplayNameInStats: false,
  325. // Enables sending participants' emails (if available) to callstats and other analytics
  326. // enableEmailInStats: false,
  327. // Privacy
  328. //
  329. // If third party requests are disabled, no other server will be contacted.
  330. // This means avatars will be locally generated and callstats integration
  331. // will not function.
  332. // disableThirdPartyRequests: false,
  333. // Peer-To-Peer mode: used (if enabled) when there are just 2 participants.
  334. //
  335. p2p: {
  336. // Enables peer to peer mode. When enabled the system will try to
  337. // establish a direct connection when there are exactly 2 participants
  338. // in the room. If that succeeds the conference will stop sending data
  339. // through the JVB and use the peer to peer connection instead. When a
  340. // 3rd participant joins the conference will be moved back to the JVB
  341. // connection.
  342. enabled: true,
  343. // The STUN servers that will be used in the peer to peer connections
  344. stunServers: [
  345. // { urls: 'stun:jitsi-meet.example.com:3478' },
  346. { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
  347. ]
  348. // Sets the ICE transport policy for the p2p connection. At the time
  349. // of this writing the list of possible values are 'all' and 'relay',
  350. // but that is subject to change in the future. The enum is defined in
  351. // the WebRTC standard:
  352. // https://www.w3.org/TR/webrtc/#rtcicetransportpolicy-enum.
  353. // If not set, the effective value is 'all'.
  354. // iceTransportPolicy: 'all',
  355. // If set to true, it will prefer to use H.264 for P2P calls (if H.264
  356. // is supported). This setting is deprecated, use preferredCodec instead.
  357. // preferH264: true
  358. // Provides a way to set the video codec preference on the p2p connection. Acceptable
  359. // codec values are 'VP8', 'VP9' and 'H264'.
  360. // preferredCodec: 'H264',
  361. // If set to true, disable H.264 video codec by stripping it out of the
  362. // SDP. This setting is deprecated, use disabledCodec instead.
  363. // disableH264: false,
  364. // Provides a way to prevent a video codec from being negotiated on the p2p connection.
  365. // disabledCodec: '',
  366. // How long we're going to wait, before going back to P2P after the 3rd
  367. // participant has left the conference (to filter out page reload).
  368. // backToP2PDelay: 5
  369. },
  370. analytics: {
  371. // The Google Analytics Tracking ID:
  372. // googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
  373. // Matomo configuration:
  374. // matomoEndpoint: 'https://your-matomo-endpoint/',
  375. // matomoSiteID: '42',
  376. // The Amplitude APP Key:
  377. // amplitudeAPPKey: '<APP_KEY>'
  378. // Configuration for the rtcstats server:
  379. // By enabling rtcstats server every time a conference is joined the rtcstats
  380. // module connects to the provided rtcstatsEndpoint and sends statistics regarding
  381. // PeerConnection states along with getStats metrics polled at the specified
  382. // interval.
  383. // rtcstatsEnabled: true,
  384. // In order to enable rtcstats one needs to provide a endpoint url.
  385. // rtcstatsEndpoint: wss://rtcstats-server-pilot.jitsi.net/,
  386. // The interval at which rtcstats will poll getStats, defaults to 1000ms.
  387. // If the value is set to 0 getStats won't be polled and the rtcstats client
  388. // will only send data related to RTCPeerConnection events.
  389. // rtcstatsPolIInterval: 1000
  390. // Array of script URLs to load as lib-jitsi-meet "analytics handlers".
  391. // scriptURLs: [
  392. // "libs/analytics-ga.min.js", // google-analytics
  393. // "https://example.com/my-custom-analytics.js"
  394. // ],
  395. },
  396. // Logs that should go be passed through the 'log' event if a handler is defined for it
  397. // apiLogLevels: ['warn', 'log', 'error', 'info', 'debug'],
  398. // Information about the jitsi-meet instance we are connecting to, including
  399. // the user region as seen by the server.
  400. deploymentInfo: {
  401. // shard: "shard1",
  402. // region: "europe",
  403. // userRegion: "asia"
  404. },
  405. // Decides whether the start/stop recording audio notifications should play on record.
  406. // disableRecordAudioNotification: false,
  407. // Information for the chrome extension banner
  408. // chromeExtensionBanner: {
  409. // // The chrome extension to be installed address
  410. // url: 'https://chrome.google.com/webstore/detail/jitsi-meetings/kglhbbefdnlheedjiejgomgmfplipfeb',
  411. // // Extensions info which allows checking if they are installed or not
  412. // chromeExtensionsInfo: [
  413. // {
  414. // id: 'kglhbbefdnlheedjiejgomgmfplipfeb',
  415. // path: 'jitsi-logo-48x48.png'
  416. // }
  417. // ]
  418. // },
  419. // Local Recording
  420. //
  421. // localRecording: {
  422. // Enables local recording.
  423. // Additionally, 'localrecording' (all lowercase) needs to be added to
  424. // TOOLBAR_BUTTONS in interface_config.js for the Local Recording
  425. // button to show up on the toolbar.
  426. //
  427. // enabled: true,
  428. //
  429. // The recording format, can be one of 'ogg', 'flac' or 'wav'.
  430. // format: 'flac'
  431. //
  432. // },
  433. // Options related to end-to-end (participant to participant) ping.
  434. // e2eping: {
  435. // // The interval in milliseconds at which pings will be sent.
  436. // // Defaults to 10000, set to <= 0 to disable.
  437. // pingInterval: 10000,
  438. //
  439. // // The interval in milliseconds at which analytics events
  440. // // with the measured RTT will be sent. Defaults to 60000, set
  441. // // to <= 0 to disable.
  442. // analyticsInterval: 60000,
  443. // },
  444. // If set, will attempt to use the provided video input device label when
  445. // triggering a screenshare, instead of proceeding through the normal flow
  446. // for obtaining a desktop stream.
  447. // NOTE: This option is experimental and is currently intended for internal
  448. // use only.
  449. // _desktopSharingSourceDevice: 'sample-id-or-label',
  450. // If true, any checks to handoff to another application will be prevented
  451. // and instead the app will continue to display in the current browser.
  452. // disableDeepLinking: false,
  453. // A property to disable the right click context menu for localVideo
  454. // the menu has option to flip the locally seen video for local presentations
  455. // disableLocalVideoFlip: false,
  456. // Mainly privacy related settings
  457. // Disables all invite functions from the app (share, invite, dial out...etc)
  458. // disableInviteFunctions: true,
  459. // Disables storing the room name to the recents list
  460. // doNotStoreRoom: true,
  461. // Deployment specific URLs.
  462. // deploymentUrls: {
  463. // // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
  464. // // user documentation.
  465. // userDocumentationURL: 'https://docs.example.com/video-meetings.html',
  466. // // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
  467. // // to the specified URL for an app download page.
  468. // downloadAppsUrl: 'https://docs.example.com/our-apps.html'
  469. // },
  470. // Options related to the remote participant menu.
  471. // remoteVideoMenu: {
  472. // // If set to true the 'Kick out' button will be disabled.
  473. // disableKick: true
  474. // },
  475. // If set to true all muting operations of remote participants will be disabled.
  476. // disableRemoteMute: true,
  477. // Enables support for lip-sync for this client (if the browser supports it).
  478. // enableLipSync: false
  479. /**
  480. External API url used to receive branding specific information.
  481. If there is no url set or there are missing fields, the defaults are applied.
  482. None of the fields are mandatory and the response must have the shape:
  483. {
  484. // The hex value for the colour used as background
  485. backgroundColor: '#fff',
  486. // The url for the image used as background
  487. backgroundImageUrl: 'https://example.com/background-img.png',
  488. // The anchor url used when clicking the logo image
  489. logoClickUrl: 'https://example-company.org',
  490. // The url used for the image used as logo
  491. logoImageUrl: 'https://example.com/logo-img.png'
  492. }
  493. */
  494. // brandingDataUrl: '',
  495. // The URL of the moderated rooms microservice, if available. If it
  496. // is present, a link to the service will be rendered on the welcome page,
  497. // otherwise the app doesn't render it.
  498. // moderatedRoomServiceUrl: 'https://moderated.jitsi-meet.example.com',
  499. // Hides the conference timer.
  500. // hideConferenceTimer: true,
  501. // Sets the conference subject
  502. // subject: 'Conference Subject',
  503. // List of undocumented settings used in jitsi-meet
  504. /**
  505. _immediateReloadThreshold
  506. debug
  507. debugAudioLevels
  508. deploymentInfo
  509. dialInConfCodeUrl
  510. dialInNumbersUrl
  511. dialOutAuthUrl
  512. dialOutCodesUrl
  513. disableRemoteControl
  514. displayJids
  515. etherpad_base
  516. externalConnectUrl
  517. firefox_fake_device
  518. googleApiApplicationClientID
  519. iAmRecorder
  520. iAmSipGateway
  521. microsoftApiApplicationClientID
  522. peopleSearchQueryTypes
  523. peopleSearchUrl
  524. requireDisplayName
  525. tokenAuthUrl
  526. */
  527. /**
  528. * This property can be used to alter the generated meeting invite links (in combination with a branding domain
  529. * which is retrieved internally by jitsi meet) (e.g. https://meet.jit.si/someMeeting
  530. * can become https://brandedDomain/roomAlias)
  531. */
  532. // brandingRoomAlias: null,
  533. // List of undocumented settings used in lib-jitsi-meet
  534. /**
  535. _peerConnStatusOutOfLastNTimeout
  536. _peerConnStatusRtcMuteTimeout
  537. abTesting
  538. avgRtpStatsN
  539. callStatsConfIDNamespace
  540. callStatsCustomScriptUrl
  541. desktopSharingSources
  542. disableAEC
  543. disableAGC
  544. disableAP
  545. disableHPF
  546. disableNS
  547. enableTalkWhileMuted
  548. forceJVB121Ratio
  549. forceTurnRelay
  550. hiddenDomain
  551. ignoreStartMuted
  552. */
  553. // Allow all above example options to include a trailing comma and
  554. // prevent fear when commenting out the last value.
  555. makeJsonParserHappy: 'even if last key had a trailing comma'
  556. // no configuration value should follow this line.
  557. };
  558. /* eslint-enable no-unused-vars, no-var */