Add comments for package installation steps

This commit is contained in:
James Addison 2020-03-18 11:34:59 +00:00
parent a15c6d8314
commit b56af098e5
1 changed files with 5 additions and 0 deletions

View File

@ -41,8 +41,13 @@ wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
Note: Something to consider before installation is how you're planning to serve Jitsi Meet. The installer will check if Nginx or Apache is present (with this order) and configure a virtualhost within the web server it finds to serve Jitsi Meet. If none of the above is found it then configures itself to be served via jetty. So if for example you are planning on deploying Jitsi Meet with a web server, you have to make sure to install the server **before** installing jitsi-meet.
```sh
# Ensures that HTTPS transport is enabled for apt repositories
apt-get install apt-transport-https
# Retrieve the latest package versions across all repositories
apt-get update
# Perform jitsi-meet installation
apt-get -y install jitsi-meet
```