Fix for missing preuploaded presentations

Add a nginx redirect to allow bbb find a pre-uploaded presentation.

ref: https://docs.bigbluebutton.org/greenlight/gl-config.html#updating-from-version-prior-to-27
This commit is contained in:
manfred-w 2021-05-18 14:21:54 +02:00
parent 0c37742980
commit 551246434b

View File

@ -26,4 +26,9 @@ location /b/cable {
proxy_send_timeout 6h;
client_body_timeout 6h;
send_timeout 6h;
}
}
# this is necessary for the preupload_presentation feature
location /rails/active_storage {
return 301 /b$request_uri;
}