nginx-upload-module
nginx-upload-module copied to clipboard
A module for nginx web server for handling file uploads using multipart/form-data encoding (RFC 1867).
origin nginx ngx_http_do_read_client_request_body did not limit upload rate , if in function ngx_http_do_read_client_request_body limit upload rate, the cpu is 100%, how did you do it ? whats the meanning of...
In function ngx_http_upload_eval_state_path() the following code u->state_store_path = ngx_pcalloc(r->pool, sizeof(ngx_path_t)); if(u->store_path == NULL) { return NGX_ERROR; } Shouldn't it be as follow? u->state_store_path = ngx_pcalloc(r->pool, sizeof(ngx_path_t)); if(u->state_store_path == NULL) {...
In an attempt to help @fdintino with the module and prepare for a release , i have thought of list of actions to clean things up. 1.Closing old / irrelevant...
specifically, the 'filename*=' syntax isn't supported: https://tools.ietf.org/html/rfc6266
Running nginx 1.8.0 with nginx-upload-module 2.2, I've been trying to figure out an issue regarding communications between nginx and our unicorn backend for a while, and it looks like a...
Hi, I'm using nginx 1.8.0 with the 2.2 branch of nginx-upload-module. I'm using the provided nginx configuration and upload static page. I've just altered the client_max_body_size directive to allow big...
I have an issue which occurs frequently, but I can't seem to replicate it consistently. When uploading a batch of files, occasionally I end up with an extra copy or...
The state file is updated after all request body writed into file. If file upload process is interupted by some errors, the content already uploaded and writen must be uploaded...
If I post an invalid data, like content-length less than content-Range, this module will pass to backend rather than return a 41\* error. test case: curl localhost:8081/upload/ -d abc -H...
Is it possible to pass an array to the upload_pass_form_field see you have second file ...