Quellcode durchsuchen

doc: add nginx config for the electron version in manual install doc

master
Martin vor 5 Jahren
Ursprung
Commit
829e3bfe15
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 12 neuen und 1 gelöschten Zeilen
  1. 12
    1
      doc/manual-install.md

+ 12
- 1
doc/manual-install.md Datei anzeigen

140
         proxy_set_header X-Forwarded-For $remote_addr;
140
         proxy_set_header X-Forwarded-For $remote_addr;
141
         proxy_set_header Host $http_host;
141
         proxy_set_header Host $http_host;
142
     }
142
     }
143
+    # external_api.js must be accessible from the root of the
144
+    # installation for the electron version of Jitsi Meet to work
145
+    # https://github.com/jitsi/jitsi-meet-electron
146
+    location /external_api.js {
147
+        alias /srv/jitsi-meet/libs/external_api.min.js;
148
+    }
143
 }
149
 }
144
 ```
150
 ```
145
 
151
 
166
 Create `~/.sip-communicator/sip-communicator.properties` in the home folder of the user that will be starting Jitsi Videobridge:
172
 Create `~/.sip-communicator/sip-communicator.properties` in the home folder of the user that will be starting Jitsi Videobridge:
167
 ```sh
173
 ```sh
168
 mkdir -p ~/.sip-communicator
174
 mkdir -p ~/.sip-communicator
169
-echo "org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false" > ~/.sip-communicator/sip-communicator.properties
175
+cat > ~/.sip-communicator/sip-communicator.properties << EOF
176
+org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
177
+# The videobridge uses 443 by default with 4443 as a fallback, but since we're already
178
+# running nginx on 443 in this example doc, we specify 4443 manually to avoid a race condition
179
+org.jitsi.videobridge.TCP_HARVESTER_PORT=4443
180
+EOF
170
 ```
181
 ```
171
 
182
 
172
 Start the videobridge with:
183
 Start the videobridge with:

Laden…
Abbrechen
Speichern