From 1c83507faf0cc533f69dc75f95fdf396b558ee77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 1 Oct 2018 08:24:51 +0200 Subject: [PATCH] Document how to use with own instalation Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/124 --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 +### 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.