|
@@ -14,11 +14,15 @@ b.) You only need to do this if you want to ___host your own Jitsi server___. If
|
14
|
14
|
|
15
|
15
|
## Basic Jitsi Meet install
|
16
|
16
|
|
17
|
|
-### Add the domain name to `/etc/hosts`
|
|
17
|
+### Set up the Fully Qualified Domain Name (FQDN) (optional)
|
18
|
18
|
|
19
|
|
-Add the the domain used to host the Jitsi Meet instance in the `/etc/hosts` file :
|
|
19
|
+If the machine used to host the Jitsi Meet instance has a FQDN (for example `meet.example.org`) already set up in DNS, `/etc/hostname` must contain this FQDN; if this is not the case yet, [change the hostname](https://wiki.debian.org/it/HowTo/ChangeHostname).
|
20
|
20
|
|
21
|
|
- 127.0.0.1 meet.example.org
|
|
21
|
+Then add the same FQDN in the `/etc/hosts` file, associating it with the loopback address:
|
|
22
|
+
|
|
23
|
+ 127.0.0.1 localhost meet.example.org
|
|
24
|
+
|
|
25
|
+Finally on the same machine test that you can ping the FQDN with: `ping "$(hostname)"`-
|
22
|
26
|
|
23
|
27
|
### Add the repository
|
24
|
28
|
```sh
|