瀏覽代碼

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>
Ben Magistro 6 月之前
父節點
當前提交
6443c6f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/rootfs/defaults/meet.conf

+ 1 - 1
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;