diff options
author | Saúl Ibarra Corretgé <saghul@gmail.com> | 2018-10-01 08:24:51 +0200 |
---|---|---|
committer | Hristo Terezov <hristo@jitsi.org> | 2018-10-01 08:53:12 -0500 |
commit | 1c83507faf0cc533f69dc75f95fdf396b558ee77 (patch) | |
tree | 1aa437b902126e863b27dcb17764f1851f8bdd10 /README.md | |
parent | cc91dae90bec637dd70aa20e5a4977be93da2ed4 (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.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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. |