aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <saghul@gmail.com>2018-10-01 08:24:51 +0200
committerHristo Terezov <hristo@jitsi.org>2018-10-01 08:53:12 -0500
commit1c83507faf0cc533f69dc75f95fdf396b558ee77 (patch)
tree1aa437b902126e863b27dcb17764f1851f8bdd10 /README.md
parentcc91dae90bec637dd70aa20e5a4977be93da2ed4 (diff)
Document how to use with own instalation
Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/124
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9b73bc4..1697d7c 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,20 @@ sudo apt-get install libnss3
</details>
+### Using it with your own Jitsi Meet installation
+
+In order to use this application with your own Jitsi Meet installation it's
+necessary to enable the External API. Your server must serve a `external_api.js`
+file at the root of the installation.
+
+Here is an example using nginx:
+
+```
+location /external_api.js {
+ alias /usr/share/jitsi-meet/libs/external_api.min.js;
+}
+```
+
## Development
If you want to hack on this project, here is how you do it.