2020-10-19 00:08:37 +02:00
|
|
|
# Video call providers
|
|
|
|
|
|
|
|
This page documents the server-level configuration required to support
|
|
|
|
non-default [video call integration
|
|
|
|
options](https://zulip.com/help/start-a-call) on a self-hosted Zulip
|
|
|
|
server.
|
|
|
|
|
|
|
|
## Zoom
|
|
|
|
|
|
|
|
To use the [Zoom](https://zoom.us) integration on a self-hosted
|
|
|
|
installation, you'll need to register a custom Zoom app as follows:
|
|
|
|
|
|
|
|
1. Select [**Build App**](https://marketplace.zoom.us/develop/create)
|
|
|
|
at the Zoom Marketplace.
|
|
|
|
|
|
|
|
1. Create an app with the **OAuth** type.
|
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- Choose an app name such as "ExampleCorp Zulip".
|
|
|
|
- Select **User-managed app**.
|
|
|
|
- Disable the option to publish the app on the Marketplace.
|
|
|
|
- Click **Create**.
|
2020-10-19 00:08:37 +02:00
|
|
|
|
2022-01-20 14:02:17 +01:00
|
|
|
1. Inside the Zoom app management page:
|
2020-10-19 00:08:37 +02:00
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- On the **App Credentials** tab, set both the **Redirect URL for
|
2020-10-19 00:08:37 +02:00
|
|
|
OAuth** and the **Whitelist URL** to
|
|
|
|
`https://zulip.example.com/calls/zoom/complete` (replacing
|
|
|
|
`zulip.example.com` by your main Zulip hostname).
|
2021-08-20 21:45:39 +02:00
|
|
|
- On the **Scopes** tab, add the `meeting:write` scope.
|
2020-10-19 00:08:37 +02:00
|
|
|
|
|
|
|
You can then configure your Zulip server to use that Zoom app as
|
|
|
|
follows:
|
|
|
|
|
|
|
|
1. In `/etc/zulip/zulip-secrets.conf`, set `video_zoom_client_secret`
|
|
|
|
to be your app's "Client Secret".
|
|
|
|
|
|
|
|
1. In `/etc/zulip/settings.py`, set `VIDEO_ZOOM_CLIENT_ID` to your
|
|
|
|
app's "Client ID".
|
|
|
|
|
|
|
|
1. Restart the Zulip server with
|
|
|
|
`/home/zulip/deployments/current/scripts/restart-server`.
|
|
|
|
|
2021-08-20 21:53:28 +02:00
|
|
|
This enables Zoom support in your Zulip server. Finally, [configure
|
2020-10-19 00:08:37 +02:00
|
|
|
Zoom as the video call
|
|
|
|
provider](https://zulip.com/help/start-a-call) in the Zulip
|
|
|
|
organization(s) where you want to use it.
|
|
|
|
|
2021-07-06 00:23:51 +02:00
|
|
|
## BigBlueButton
|
2020-10-19 00:08:37 +02:00
|
|
|
|
2021-07-06 00:23:51 +02:00
|
|
|
To use the [BigBlueButton](https://bigbluebutton.org/) video call
|
2020-10-19 00:08:37 +02:00
|
|
|
integration on a self-hosted Zulip installation, you'll need to have a
|
2021-07-06 00:23:51 +02:00
|
|
|
BigBlueButton server and configure it:
|
2020-10-19 00:08:37 +02:00
|
|
|
|
|
|
|
1. Get the Shared Secret using the `bbb-conf --secret` command on your
|
2021-07-06 00:23:51 +02:00
|
|
|
BigBlueButton Server. See also [the BigBlueButton
|
2021-11-30 17:24:23 +01:00
|
|
|
documentation](https://docs.bigbluebutton.org/admin/customize.html#extract-the-shared-secret).
|
2020-10-19 00:08:37 +02:00
|
|
|
|
2021-07-06 00:23:51 +02:00
|
|
|
2. Get the URL to your BigBlueButton API. The URL has the form of
|
2020-10-19 00:08:37 +02:00
|
|
|
`https://bigbluebutton.example.com/bigbluebutton/` and can also be
|
|
|
|
found using the `bbb-conf --secret` command.
|
|
|
|
|
2021-07-06 00:23:51 +02:00
|
|
|
You can then configure your Zulip server to use that BigBlueButton
|
2020-10-19 00:08:37 +02:00
|
|
|
Server as follows:
|
|
|
|
|
|
|
|
1. In `/etc/zulip/zulip-secrets.conf`, set `big_blue_button_secret`
|
2021-07-06 00:23:51 +02:00
|
|
|
to be your BigBlueButton Server's shared secret.
|
2020-10-19 00:08:37 +02:00
|
|
|
|
|
|
|
2. In `/etc/zulip/settings.py`, set `BIG_BLUE_BUTTON_URL` to your
|
2021-07-06 00:23:51 +02:00
|
|
|
to be your BigBlueButton Server's API URL.
|
2020-10-19 00:08:37 +02:00
|
|
|
|
|
|
|
3. Restart the Zulip server with
|
|
|
|
`/home/zulip/deployments/current/scripts/restart-server`.
|
|
|
|
|
2021-08-20 21:53:28 +02:00
|
|
|
This enables BigBlueButton support in your Zulip server. Finally, [configure
|
2021-07-06 00:23:51 +02:00
|
|
|
BigBlueButton as the video call
|
2020-10-19 00:08:37 +02:00
|
|
|
provider](https://zulip.com/help/start-a-call) in the Zulip
|
|
|
|
organization(s) where you want to use it.
|