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 <koncept1@gmail.com>
This commit is contained in:
Ben Magistro
2024-10-25 15:59:34 +00:00
committed by Saúl Ibarra Corretgé
parent 74d913f58a
commit 6443c6f7fb

View File

@@ -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;