We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NGINX_VERSION=1.18.0 MOD_ZIP_VERSION=1.2.0
First, i start downloading my zip file using :
curl http://mod_zip_descriptor --output example.zip
All files have theirs CRC32.
Response headers :
< HTTP/1.1 200 OK < Server: nginx/1.18.0 < Date: Wed, 29 Sep 2021 11:29:35 GMT < Content-Type: application/zip < Content-Length: 913341606 < Connection: keep-alive < Last-Modified: Tue, 28 Sep 2021 15:31:38 GMT < ETag: "6153355a-1574" < Content-Disposition: attachment; filename=example.zip < Accept-Ranges: bytes < Cache-Control: max-age=0
I stop the download during the process to test resuming.
Then i try to resume it using automatic range :
curl http://mod_zip_descriptor -C - --output example.zip
Server say me : "HTTP server doesn't seem to support byte ranges. Cannot resume."
I try resuming it "manually" :
curl http://mod_zip_descriptor -H "Range: bytes=462135296-" --output example.zip
It hangs ... and fails!
I try using If-header:
curl http://mod_zip_descriptor -H "Range: bytes=462135296-" -H "If-Range: 6153355a-1574" --output example.zip
Download succeeds but restarts from the beginning.
Could you tell me if I have done anything wrong? Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NGINX_VERSION=1.18.0
MOD_ZIP_VERSION=1.2.0
First, i start downloading my zip file using :
All files have theirs CRC32.
Response headers :
I stop the download during the process to test resuming.
Then i try to resume it using automatic range :
Server say me : "HTTP server doesn't seem to support byte ranges. Cannot resume."
I try resuming it "manually" :
It hangs ... and fails!
I try using If-header:
Download succeeds but restarts from the beginning.
Could you tell me if I have done anything wrong?
Thanks.
The text was updated successfully, but these errors were encountered: