> El Jan 14, 2015, a las 12:19 PM, Roy Russo <[email protected]> escribió: > > Hello all, > > I've been testing a simple REST endpoint that handles form PUT/POST file > uploads with varying file sizes. It appears there exists a limit at or near > 2GB file sizes that doesn't allow a file larger than 2GB to be uploaded. Once > the upload begins, via a cURL call, the system seems to hang for several > minutes and then dies…
Hi, Yes, there is a size limit, but you can easily change it. See: http://flask.pocoo.org/docs/0.10/patterns/fileuploads/#improving-uploads <http://flask.pocoo.org/docs/0.10/patterns/fileuploads/#improving-uploads> Be aware than, in production, your web server has a similar setting that you also must change (check the documentation, but for NGINX it’s called client_max_body_size) —Juan-Pablo > > > -- > You received this message because you are subscribed to the Google Groups > "pocoo-libs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at http://groups.google.com/group/pocoo-libs > <http://groups.google.com/group/pocoo-libs>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pocoo-libs. For more options, visit https://groups.google.com/d/optout.
