Selaa lähdekoodia

Add a network schemas

This is to help understanding how things are wired.
j8
pierreozoux 8 vuotta sitten
vanhempi
commit
1ff29384b3
1 muutettua tiedostoa jossa 31 lisäystä ja 1 poistoa
  1. 31
    1
      doc/manual-install.md

+ 31
- 1
doc/manual-install.md Näytä tiedosto

@@ -6,6 +6,34 @@ change references to that to match your host, and generate some passwords for
6 6
 
7 7
 There are also some complete [example config files](https://github.com/jitsi/jitsi-meet/tree/master/doc/example-config-files/) available, mentioned in each section.
8 8
 
9
+## Network description
10
+
11
+This how the network look like:
12
+```
13
+                   +                           +
14
+                   |                           |
15
+                   |                           |
16
+                   v                           |
17
+                  443                          |
18
+               +-------+                       |
19
+               |       |                       |
20
+               | NginX |                       |
21
+               |       |                       |
22
+               +--+-+--+                       |
23
+                  | |                          |
24
++------------+    | |    +--------------+      |
25
+|            |    | |    |              |      |
26
+| jitsi-meet +<---+ +--->+ prosody/xmpp |      |
27
+|            |files 5280 |              |      |
28
++------------+           +--------------+      v
29
+                     5222,5347^    ^5347      4443
30
+                +--------+    |    |    +-------------+
31
+                |        |    |    |    |             |
32
+                | jicofo +----^    ^----+ videobridge |
33
+                |        |              |             |
34
+                +--------+              +-------------+
35
+```
36
+
9 37
 ## Install prosody
10 38
 ```sh
11 39
 apt-get install prosody
@@ -76,7 +104,9 @@ Add a new file `jitsi.example.com` in `/etc/nginx/sites-available` (see also the
76 104
 server_names_hash_bucket_size 64;
77 105
 
78 106
 server {
79
-    listen 80;
107
+    listen 443;
108
+    # tls configuration that is not covered in this guide
109
+    # we recommend the use of https://certbot.eff.org/
80 110
     server_name jitsi.example.com;
81 111
     # set the root
82 112
     root /srv/jitsi.example.com;

Loading…
Peruuta
Tallenna