Tag: jitsi
poor quality after jitsi update
check the js console in chromes developer tools for something like this: BridgeChannel.js:88 WebSocket connection to ‘wss://jitsi.yourmachine.com/colibri-ws/default-id/6e93e6f16131917e//a6a42650?pwd=6iiknuitk9epkkh65n8q2ak1m3’ failed It seems your update process switches you poorly (incompletely) from multiplexing to bridge websockets. Check this: https://jitsi.github.io/handbook/docs/devops-guide/faq Additional hints: In /etc/turnserver.conf you can remove listening-port= Check the external-ip btw. In /etc/prosody/conf.avail/jitsi.yourmachine.com.cfg.lua you can remove the stun and […]
Jitsi | Youtube Streaming and Recording on Debian 10
Credits to woodworker_life [ https://community.jitsi.org/t/how-to-to-setup-integrated-jitsi-and-jibri-for-dummies-my-comprehensive-tutorial-for-the-beginner/35718 ] To handle recording and youtube streaming in your jitsy environment you need a jibri server who connects to your jitsi. Your jitsi server is jitsi.mydomain.mytld Your jibri server is jibri.mydomain.mytld On Jibri: Edit /etc/hosts and add jibri jibri.mydomain.mytld to 127.0.0.1 Edit /etc/hostname content to jibri Update your Debian. Install […]
Jitsi DIY | Debian
apt-get update apt-get dist-upgrade apt-get -y install openjdk-11-jre nginx Add default.conf to nginx/sites-available: server { listen 80 default_server; listen [::]:80 default_server; server_name _; include snippets/well-known.conf; } Link this file to nginx/sites-enabled. Add jitsi.mydomain.mytld.conf to nginx/sites-available: server_names_hash_bucket_size 64; server { listen 80; listen [::]:80; server_name jitsi.ir-media-tec.com; location ^~ /.well-known/acme-challenge/ { default_type “text/plain”; root /usr/share/jitsi-meet; } location […]