Document how to use with own instalation

Fixes: https://github.com/jitsi/jitsi-meet-electron/issues/124
This commit is contained in:
Saúl Ibarra Corretgé 2018-10-01 08:24:51 +02:00 committed by Hristo Terezov
parent cc91dae90b
commit 1c83507faf
1 changed files with 14 additions and 0 deletions

View File

@ -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.