Merge pull request #116 from manfred-w/develop

Fix for preuploaded presentations not working
This commit is contained in:
chandi 2021-06-21 16:21:49 +02:00 committed by GitHub
commit ea70e27ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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