Skip to content

Instantly share code, notes, and snippets.

@mjtiempo
Last active July 21, 2023 14:19
Show Gist options
  • Save mjtiempo/84b9213538f3f9607818cb31d8a73d2d to your computer and use it in GitHub Desktop.
Save mjtiempo/84b9213538f3f9607818cb31d8a73d2d to your computer and use it in GitHub Desktop.
Jitsi Meet Quick Install
sudo su &&
cd &&
wget https://prosody.im/files/prosody-debian-packages.key -O- | sudo apt-key add - &&
echo deb http://packages.prosody.im/debian $(lsb_release -sc) main | sudo tee -a /etc/apt/sources.list &&
apt-get update -y &&
apt-get upgrade -y &&
apt-get install prosody -y &&
chown root:prosody /etc/prosody/certs/localhost.key &&
chmod 644 /etc/prosody/certs/localhost.key &&
cp /etc/prosody/certs/localhost.key /etc/ssl &&
apt-get install nginx -y &&
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add - &&
sh -c "echo 'deb https://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi-stable.list" &&
apt-get -y update &&
apt-get install jitsi-meet -y &&
sed -i '/^admins = { }/a component_ports = { 5347 }\ncomponent_interface = "0.0.0.0"' /etc/prosody/prosody.cfg.lua
@Gum97
Copy link

Gum97 commented Jul 31, 2020

Hello sir,
Jitsi is use high cpu in client you can help me fix it. Thanks u so much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment