general:unsorted:install_jitsi

no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


general:unsorted:install_jitsi [2020/06/26 09:07] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Instal Jitsi meet on Ubuntu 20.04 behind NAT ======
 +<code bash install jitsi>
 +wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add - 
 +sudo sh -c "echo 'deb https://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi-stable.list"
 +sudo apt install apt-transport-https
 +sudo apt -y update
 +sudo apt -y install jitsi-meet
 +</code>
  
 +<code bash install certbot>
 +sudo apt install certbot python3-certbot-nginx
 +sudo certbot --nginx -d meet.example.com
 +</code>
 +
 +systemctl show certbot.timer \\
 +cat /etc/cron.d/certbot \\
 +sudo certbot renew --dry-run \\
 +
 +<code bash add your IP addresses>
 +sudo su
 +vim /etc/jitsi/jicofo/sip-communicator.properties
 +#add lines
 +# private IP
 +org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=10.134.254.9
 +# public IP
 +org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=183.141.181.124
 +# must be static
 +</code>
 +
 +<code bash Forward ports to jisti>
 +80/tcp
 +443/tcp
 +4443/tcp
 +10000/udp
 +</code>
  • general/unsorted/install_jitsi.txt
  • Last modified: 2020/06/26 09:07
  • by 127.0.0.1