Merge pull request #7 from cheuberg/enable-presentation-download

Enable Presentation Download
This commit is contained in:
chandi 2020-05-22 16:06:56 +02:00 committed by GitHub
commit f1036bcdbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@
} }
location ~ "^/bigbluebutton/presentation/download\/[0-9a-f]+-[0-9]+/[0-9a-f]+-[0-9]+$" { location ~ "^/bigbluebutton/presentation/download\/[0-9a-f]+-[0-9]+/[0-9a-f]+-[0-9]+$" {
if ($arg_presFilename !~ "^[0-9a-zA-Z]+\.[0-9a-zA-Z]+$") { if ($arg_presFilename !~ "^[0-9a-zA-Z]+-[0-9]+\.[0-9a-zA-Z]+$") {
return 404; return 404;
} }
proxy_pass http://core:8090$uri$is_args$args; proxy_pass http://core:8090$uri$is_args$args;