Jitsi

From Traxel Wiki
Jump to navigation Jump to search

Links

Setup

Host

  • interserver.net: hellman.deadmandao.com
  • namecheap.com: CNAME meet.bobbushman.com -> hellman.deadmandao.com
  • Apache Note: "Nginx/Apache: As we prefer the usage of Nginx as webserver, the installer checks first for the presence of Nginx and then for Apache." - Jitsi
    • IE: nginx is not required. (though Apache is second-class, so maybe it won't be automatic)

Packages

$ sudo apt install gnupg
$ sudo apt install openjdk-11-jre
$ sudo apt install apt-transport-https
$ sudo apt update

Hostname

$ sudo hostnamectl  set-hostname meet.bobbushman.com
$ sudo emacs -nw /etc/hosts
# add 66.23.231.157 meet.bobbushman.com 
$ ping meet.bobbushman.com

Jitsi Deb Repo

$ echo deb http://packages.prosody.im/debian $(lsb_release -sc) main | sudo tee -a /etc/apt/sources.list
$ wget https://prosody.im/files/prosody-debian-packages.key -O- | sudo apt-key add -
$ sudo apt update
$ sudo apt install lua5.2

$ curl https://download.jitsi.org/jitsi-key.gpg.key | sudo sh -c 'gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg'
$ echo 'deb [signed-by=/usr/share/keyrings/jitsi-keyring.gpg] https://download.jitsi.org stable/' | sudo tee /etc/apt/sources.list.d/jitsi-stable.list > /dev/null