瀏覽代碼

doc: quick install guide updates

* optional fix for https port 5284 error

https://community.jitsi.org/t/no-certificate-present-in-ssl-tls-configuration-for-https-port-5284/47836/7

* usage of sudo and systemctl made more consistent

* jigasi download url changed to stable

Jigasi download url changed. Is this required in addition to apt install jigasi as part of the quick install guide?

* wget/dpkg removed from jagasi instructions
j8
crouchingtigerhiddenadam 5 年之前
父節點
當前提交
591ea0a44a
沒有連結到貢獻者的電子郵件帳戶。
共有 2 個檔案被更改,包括 9 行新增14 行删除
  1. 1
    0
      doc/debian/jitsi-meet-prosody/prosody.cfg.lua-jvb.example
  2. 8
    14
      doc/quick-install.md

+ 1
- 0
doc/debian/jitsi-meet-prosody/prosody.cfg.lua-jvb.example 查看文件

@@ -13,6 +13,7 @@ turncredentials = {
13 13
 
14 14
 cross_domain_bosh = false;
15 15
 consider_bosh_secure = true;
16
+-- https_ports = { }; -- Remove this line to prevent listening on port 5284
16 17
 
17 18
 VirtualHost "jitmeet.example.com"
18 19
         -- enabled = false -- Remove this line to enable this host

+ 8
- 14
doc/quick-install.md 查看文件

@@ -41,13 +41,13 @@ If you are already running Nginx on port 443 on the same machine turnserver conf
41 41
 
42 42
 ```sh
43 43
 # Ensure support is available for apt repositories served via HTTPS
44
-apt-get install apt-transport-https
44
+sudo apt install apt-transport-https
45 45
 
46 46
 # Retrieve the latest package versions across all repositories
47
-apt-get update
47
+sudo apt update
48 48
 
49 49
 # Perform jitsi-meet installation
50
-apt-get -y install jitsi-meet
50
+sudo apt install jitsi-meet
51 51
 ```
52 52
 
53 53
 During the installation, you will be asked to enter the hostname of the Jitsi Meet instance. If you have a [FQDN](https://en.wikipedia.org/wiki/Fully_qualified_domain_name) for the instance already set up in DNS, enter it there. If you don't have a resolvable hostname, you can enter the IP address of the machine (if it is static or doesn't change).
@@ -63,7 +63,7 @@ _Note_: Jitsi Meet mobile apps *require* a valid certificate signed by a trusted
63 63
 Simply run the following in your shell:
64 64
 
65 65
 ```sh
66
-/usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh
66
+sudo /usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh
67 67
 ```
68 68
 
69 69
 Note that this script uses the [HTTP-01 challenge type](https://letsencrypt.org/docs/challenge-types/) and thus your instance needs to be accessible from the public internet. If you want to use a different challenge type, don't use this script and instead choose ___I want to use my own certificate___ during jitsi-meet installation.
@@ -114,13 +114,7 @@ If this all worked, then congratulations!  You have an operational Jitsi confere
114 114
 Jigasi is a server-side application acting as a gateway to Jitsi Meet conferences. It allows regular [SIP](https://en.wikipedia.org/wiki/Session_Initiation_Protocol) clients to join meetings and provides transcription capabilities.
115 115
 
116 116
 ```sh
117
-apt-get -y install jigasi
118
-```
119
-or
120
-
121
-```sh
122
-wget https://download.jitsi.org/unstable/jigasi_1.0-107_amd64.deb
123
-dpkg -i jigasi_1.0-107_amd64.deb
117
+sudo apt install jigasi
124 118
 ```
125 119
 
126 120
 During the installation, you will be asked to enter your SIP account and password. This account will be used to invite the other SIP participants.
@@ -134,7 +128,7 @@ Enjoy!
134 128
 ## Uninstall
135 129
 
136 130
 ```sh
137
-apt-get purge jigasi jitsi-meet jitsi-meet-web-config jitsi-meet-prosody jitsi-meet-turnserver jitsi-meet-web jicofo jitsi-videobridge2
131
+sudo apt purge jigasi jitsi-meet jitsi-meet-web-config jitsi-meet-prosody jitsi-meet-turnserver jitsi-meet-web jicofo jitsi-videobridge2
138 132
 ```
139 133
 
140 134
 Sometimes the following packages will fail to uninstall properly:
@@ -147,8 +141,8 @@ When this happens, just run the uninstall command a second time and it should be
147 141
 The reason for the failure is that sometimes the uninstall script is faster than the process that stops the daemons. The second run of the uninstall command fixes this, as by then the jigasi or jitsi-videobridge daemons are already stopped.
148 142
 
149 143
 #### Systemd details
150
-To reload the systemd changes on a running system execute `systemctl daemon-reload` and `service jitsi-videobridge2 restart`.
151
-To check the tasks part execute `service jitsi-videobridge2 status` and you should see `Tasks: XX (limit: 65000)`.
144
+To reload the systemd changes on a running system execute `sudo systemctl daemon-reload` and `sudo systemctl restart jitsi-videobridge2`.
145
+To check the tasks part execute `sudo systemctl status jitsi-videobridge2` and you should see `Tasks: XX (limit: 65000)`.
152 146
 To check the files and process part execute ```cat /proc/`cat /var/run/jitsi-videobridge/jitsi-videobridge.pid`/limits``` and you should see:
153 147
 ```
154 148
 Max processes             65000                65000                processes

Loading…
取消
儲存