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>
pull/1960/head
Ben Magistro 4 weeks ago committed by Saúl Ibarra Corretgé
parent 74d913f58a
commit 6443c6f7fb
  1. 2
      web/rootfs/defaults/meet.conf

@ -60,7 +60,7 @@ location = /_api/room-info {
{{ end }} {{ end }}
# ensure all static content can always be found first # 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 }}'; add_header 'Access-Control-Allow-Origin' '{{ $CORS_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN }}';
alias /usr/share/jitsi-meet/$1/$2; alias /usr/share/jitsi-meet/$1/$2;

Loading…
Cancel
Save