소스 검색

Add a network schemas

This is to help understanding how things are wired.
j8
pierreozoux 8 년 전
부모
커밋
1ff29384b3
1개의 변경된 파일31개의 추가작업 그리고 1개의 파일을 삭제
  1. 31
    1
      doc/manual-install.md

+ 31
- 1
doc/manual-install.md 파일 보기

6
 
6
 
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.
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
 ## Install prosody
37
 ## Install prosody
10
 ```sh
38
 ```sh
11
 apt-get install prosody
39
 apt-get install prosody
76
 server_names_hash_bucket_size 64;
104
 server_names_hash_bucket_size 64;
77
 
105
 
78
 server {
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
     server_name jitsi.example.com;
110
     server_name jitsi.example.com;
81
     # set the root
111
     # set the root
82
     root /srv/jitsi.example.com;
112
     root /srv/jitsi.example.com;

Loading…
취소
저장