From cb3dfbc437075131b40f2e5887b28eae7af35970 Mon Sep 17 00:00:00 2001 From: winyadepla Date: Mon, 26 Jan 2026 21:54:18 +0000 Subject: [PATCH] Update matrix_rtc.md to fix instruction for serving .well-known from tuwunel. --- docs/matrix_rtc.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/matrix_rtc.md b/docs/matrix_rtc.md index a624ff35..56d53dbd 100644 --- a/docs/matrix_rtc.md +++ b/docs/matrix_rtc.md @@ -62,16 +62,13 @@ keys: #### 3.1. .well-known served by Tuwunel ***Follow this step if your .well-known configuration is served by tuwunel. Otherwise follow Step 3.2*** 1. Open your tuwunel.toml file. e.g. `nano /etc/tuwunel/tuwunel.toml`. -2. Find the line reading `#rtc_transports = []` and edit it to be: +2. Find the line reading `#rtc_transports = []` and replace it with: ```toml -rtc_transports = [ - { - type = "livekit", - livekit_service_url = "https://matrix-rtc.yourdomain.com" - } -] +[[global.well_known.rtc_transports]] +type = "livekit" +livekit_service_url = "https://matrix-rtc.yourdomain.com" ``` -3. Close the file. +4. Close the file. #### 3.2. .well-known served independently ***Follow this step if you serve your .well-known/matrix files directly. Otherwise follow Step 3.1***