Jitsi: mudanças entre as edições

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Sem resumo de edição
Linha 27: Linha 27:
  DefaultTasksMax=65000
  DefaultTasksMax=65000


reiniciando daemon
<source lang="bash">
sudo systemctl daemon-reload
</source>
verificando a configuração em funcionamento
<source lang="bash">
systemctl show --property DefaultLimitNPROC
systemctl show --property DefaultLimitNOFILE
systemctl show --property DefaultTasksMax
</source>


== Referências ==
== Referências ==

Edição das 18h44min de 20 de setembro de 2020

ajuste na configuração para melhorar áudio

em /etc/jitsi/meet/meet.seudominio.com.br-config.js na linha 619

disableAEC: true,
disableAGC: true,
disableAP: true,
disableHPF: true,
disableNS: true,
stereo: true, // Manually added this one because it's not present in the config.
startBitrate: 300000, // Just for fun.
enableLipSync: false,

Reiniciando serviços

systemctl restart nginx.service jicofo.service jitsi-videobridge2.service

ou

/etc/init.d/jicofo restart && /etc/init.d/jitsi-videobridge2 restart && /etc/init.d/prosody restart

Ajustes no Kernel

em /etc/systemd/system.conf adicione

DefaultLimitNOFILE=65000
DefaultLimitNPROC=65000
DefaultTasksMax=65000

reiniciando daemon

sudo systemctl daemon-reload

verificando a configuração em funcionamento

systemctl show --property DefaultLimitNPROC
systemctl show --property DefaultLimitNOFILE
systemctl show --property DefaultTasksMax

Referências