From 9a830c9bfc36d28b9443a85e54f633e790849841 Mon Sep 17 00:00:00 2001 From: Ava Pek Date: Thu, 26 Feb 2026 12:50:44 -0800 Subject: [PATCH] Update MatrixRTC reverse proxy instructions The `get_token` route needs to be included as well, see: - https://www.exodrifter.space/entries/20260221100913 - https://continuwuity.org/calls/livekit#4-configure-your-reverse-proxy --- docs/matrix_rtc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/matrix_rtc.md b/docs/matrix_rtc.md index 8de167d4..fdc671ed 100644 --- a/docs/matrix_rtc.md +++ b/docs/matrix_rtc.md @@ -114,7 +114,7 @@ If you use Caddy as your reverse proxy, follow step 5.1. If you use Nginx, follo matrix-rtc.yourdomain.com { # This is matrix-rtc-jwt @jwt_service { - path /sfu/get* /healthz* + path /sfu/get* /healthz* /get_token* } handle @jwt_service { reverse_proxy localhost:8081 @@ -148,7 +148,7 @@ server { ssl_certificate_key /etc/letsencrypt/live/matrix-rtc.yourdomain.com/privkey.pem; # lk-jwt-service - location ~ ^(/sfu/get|/healthz) { + location ~ ^/(sfu/get|healthz|get_token) { proxy_pass http://localhost:8081; proxy_set_header Host $host;