From 48ab6adec1b5ad7b8dc6ce4f8f8a27f7c9565fbc Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Wed, 11 Feb 2026 20:11:52 +0000 Subject: [PATCH] chore: Apply review comments --- .typos.toml | 2 ++ docs/calls/livekit.mdx | 10 ++-------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.typos.toml b/.typos.toml index 99545a84..1b3a20aa 100644 --- a/.typos.toml +++ b/.typos.toml @@ -24,3 +24,5 @@ extend-ignore-re = [ "continuwity" = "continuwuity" "execuse" = "execuse" "oltp" = "OTLP" + +rememvering = "remembering" diff --git a/docs/calls/livekit.mdx b/docs/calls/livekit.mdx index 3eaf59e6..9ea42d75 100644 --- a/docs/calls/livekit.mdx +++ b/docs/calls/livekit.mdx @@ -1,12 +1,9 @@ # Matrix RTC/Element Call Setup :::info - This guide assumes that you are using docker compose for deployment. LiveKit only provides Docker images. - ::: - ## Instructions ### 1. Domain @@ -52,7 +49,7 @@ services: # - "50100-50200:50100-50200/udp" ``` -Next, we need to configure LiveKit. In the same directory, create `livekit.yaml` with the following content - rememvering to replace `LK_MATRIX_KEY` and `LK_MATRIX_SECRET` with the values you generated! +Next, we need to configure LiveKit. In the same directory, create `livekit.yaml` with the following content - remembering to replace `LK_MATRIX_KEY` and `LK_MATRIX_SECRET` with the values you generated: ```yaml port: 7880 @@ -72,14 +69,13 @@ keys: You will need to allow ports `7881/tcp` and `50100:50200/udp` through your firewall. If you use UFW, the commands are: `ufw allow 7881/tcp` and `ufw allow 50100:50200/udp`. - ### 3. Telling clients where to find LiveKit To tell clients where to find LiveKit, we need to modify the file served at `https://example.com/.well-known/matrix/client` (for example https://continuwuity.org/.well-known/matrix/client). Unfortunately Continuwuity doesn't yet provide an easy way to do this (We're working on it). You'll need to serve this file using your web server. -Check the existing contents, and add the following (remembering to replace the URL with your one!) +Check the existing content and add the following lines, remembering to replace the URL with your own matrix-rtc-jwt deployment: ```json "org.matrix.msc4143.rtc_foci": [ @@ -107,7 +103,6 @@ The final file should look something like this: ``` - ### 4. Configure your Reverse Proxy Reverse proxies can be configured in many different ways - so we can't provide a step by step for this. @@ -158,5 +153,4 @@ rtc: secret: "COTURN_SECRET" ``` - Livekit includes a built in TURN server which can be used in place of an external option. This TURN server will only work with Livekit, so you can't use it for legacy Matrix calling - or anything else.