On Thu, Sep 29, 2011 at 4:05 PM, John Joseph Bachir <[email protected]> wrote: > Does NGINX have inherent behavior which buffers requests? (Eric's email > seemed to suggest that).
Nginx always buffers the entire body of requests before calling the upstream application. If the body exceeds client_body_buffer_size Nginx will store it in a tempfile. > Thanks for the responses! So, I've see this module: > https://github.com/vkholodkov/nginx-upload-module The upload module works a little differently. It allows you to configure specific upload endpoints that Nginx will preprocess. Rather than forwarding the entire request body to the upstream application, Nginx will parse the multipart/form-data encoded files, store them in tempfiles, and forward only the paths of the tempfiles to the upstream application. Justin _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
