mirror of
https://github.com/luzifer-docker/jitsi.git
synced 2024-11-09 15:10:02 +00:00
Import more of default jitsi config.js
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
bfa2d2db0c
commit
b1a966b452
1 changed files with 22 additions and 1 deletions
|
@ -1,9 +1,30 @@
|
|||
var config = {
|
||||
|
||||
// Connection
|
||||
bosh: '//{{ env `JITSI_DOMAIN` }}/http-bind',
|
||||
hosts: {
|
||||
domain: '{{ env `JITSI_DOMAIN` }}',
|
||||
muc: 'conference.{{ env `JITSI_DOMAIN` }}',
|
||||
bridge: 'jitsi-videobridge.{{ env `JITSI_DOMAIN` }}',
|
||||
},
|
||||
|
||||
// Audio
|
||||
enableNoAudioDetection: true,
|
||||
enableNoisyMicDetection: true,
|
||||
|
||||
// Misc
|
||||
channelLastN: 10,
|
||||
|
||||
// UI
|
||||
useNicks: false,
|
||||
bosh: '//{{ env `JITSI_DOMAIN` }}/http-bind',
|
||||
enableWelcomePage: true,
|
||||
|
||||
// Peer-To-Peer mode
|
||||
p2p: {
|
||||
enabled: true,
|
||||
stunServers: [
|
||||
{ urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
|
||||
],
|
||||
preferH264: true
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue