You have a Rails app on Heroku. I want to limit the file upload size, if possible. The file is processed as a StringIO object, so the contents of the file will be processed in memory (no need to write an intermediate file to the file system).
Usually I limited the upload size on the web server. But with Geroku, what options are there? I understand that I can go with the Flash loader, but I hope to avoid the need to use Flash on the client, if at all possible.
source
share