Advertisement
apfelcast

Jitsi

Apr 7th, 2020
4,784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. ###### Install jitsi meet Server ######
  2.  
  3. #update system#
  4. apt-get update && apt-get upgrade
  5.  
  6. #adjust hostname#
  7. sudo hostnamectl set-hostname node1
  8.  
  9. sudo nano /etc/hosts
  10.  
  11. 127.0.1.1 node1.example.com node1
  12.  
  13. hostname -f
  14.  
  15. #install java#
  16. apt-get install -y openjdk-8-jre-headless -y
  17.  
  18. java -version
  19.  
  20. #install nginx#
  21. apt-get install nginx -y
  22.  
  23. #install jitsi meet#
  24. wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add -
  25. sudo sh -c "echo 'deb https://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi.list"
  26.  
  27. apt-get update
  28.  
  29. apt-get install jitsi-meet -y
  30.  
  31. #create LE SSL certificate#
  32. /usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement