Condense repository and package installation steps

This commit is contained in:
James Addison 2020-03-18 11:34:35 +00:00
parent a954066dbb
commit a15c6d8314
1 changed files with 3 additions and 14 deletions

View File

@ -30,30 +30,19 @@ Add the the domain used to host the Jitsi Meet instance in the `/etc/hosts` file
127.0.0.1 meet.example.org
### Add the repository
```sh
echo 'deb https://download.jitsi.org stable/' >> /etc/apt/sources.list.d/jitsi-stable.list
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
```
### Update the package lists
```sh
apt-get update
```
(If you get an error:
E: The method driver /usr/lib/apt/methods/https could not be found.
run:
```sh
apt-get install apt-transport-https
```
)
### Install Jitsi Meet
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
apt-get install apt-transport-https
apt-get update
apt-get -y install jitsi-meet
```