I got a problem with my application based on RefineryCMS 1.0.8 deployed on heroku.
Heroku have a request timeout of 30 seconds. When uploading a file > 4MO through th
worker_processes Integer(ENV["WEB_CONCURRENCY"] || 3)
timeout 180 # << Unicorn Timeout will allow a longer upload time.
preload_app true
before_fork do |server, worker|
https://devcenter.heroku.com/articles/rails-unicorn
Not really. The Heroku timeout is a set in stone thing that you need to work around. Direct upload to S3 is the only option, with some sort of post-upload processing required.
There are solutions out there such as CarrierWaveDirect, but I don't know how easy this would be to use with Refinery.