From 6443c6f7fbd302ff639503686a6c78de7cf96c1d Mon Sep 17 00:00:00 2001 From: Ben Magistro Date: Fri, 25 Oct 2024 15:59:34 +0000 Subject: [PATCH] feat(transcriber): fix exposing transcript path in web This addes the transcipts path to the list of static items that should be allowed by nginx. Fixes #1427 Signed-off-by: Ben Magistro --- web/rootfs/defaults/meet.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/rootfs/defaults/meet.conf b/web/rootfs/defaults/meet.conf index 8cca756..d0a1271 100644 --- a/web/rootfs/defaults/meet.conf +++ b/web/rootfs/defaults/meet.conf @@ -60,7 +60,7 @@ location = /_api/room-info { {{ end }} # ensure all static content can always be found first -location ~ ^/(libs|css|static|images|fonts|lang|sounds|connection_optimization|.well-known)/(.*)$ { +location ~ ^/(libs|css|static|images|fonts|lang|sounds|connection_optimization|.well-known|transcripts)/(.*)$ { add_header 'Access-Control-Allow-Origin' '{{ $CORS_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN }}'; alias /usr/share/jitsi-meet/$1/$2;