(no subject)

Hi,

I would like to use the upload module and the upload progress module at
the
same time. Unfortunately, the upload progress module can only work with
proxy_pass and fastcgi, however, not with upload_pass.

Is there a way to use both modules at the same time ?

Kind regards,
Markus

Hi Markus,

It works with upload_pass, it’s just not written as such. For
example,

location /upload {

upload_pass /upload_complete;
...

track_uploads uploads 5s;

}

location /progress {
report_uploads uploads;
}

location /upload_complete {
internal;
proxy_pass http://apps;
}

Regards,
-Todd