Piotr Gaertig
Piotr Gaertig
@vongruenigen, IMO it is not related with mod_zip at all. The module it is exactly pointing the cause of the problem - no content from upstream. If your application server...
I have tried "proxy_method GET;" and it is bad. Nginx is responding with ZIP body for HEAD :/
I have put this quickly ``` if (r->method == NGX_HTTP_HEAD) { /* Don't send any content if HEAD request method was used */ return ngx_http_send_special(r, NGX_HTTP_LAST); } else { return...
My patch attempt should be really used with `proxy_method GET` to get list from upstream with GET, then mod_zip can calculate ZIP size and return it in `Content-Length` whatever HTTP...
Why? What is the use case? `/syslog-stdout/main.go` is just quick wrapper around https://github.com/ziutek/syslog
Hi, Absolutely there is an option to gradually adopt NBU as TUS-compatible server mostly for benefit of available client libraries (uppy!). BTW I was considering TUS for other private project...
You use checksums as chunk integrity check, am I right? Here, otther than integrity, CRC32 is calculated to feed [on-the-fly resumable ZIP downloads with mod_zip](https://github.com/evanmiller/mod_zip), then SHA1 makes use in...
Please, can you check error log to see what causes 500 errors?
Thanks for PR with very impressive changes. The scope of them is quite broad so I think splitting them into separate PRs with updated tests would make them easier to...
I plan to implement a call of backend before first chunk the same way as with final chunk but there will be `state=start` variable sent in addition to other known...