X-Sendfile and VERY Big Files on Apache2

Any file about 4 GB in size will not work with the mod_xsend file for Apache2 (since it sets the length of the content to long).

I am ready to rewrite it to support this; however, I cannot find documentation on how to set the content length from apache api to something more than long, and thus serve large files through Apache. I know that Apache can do this because it is compiled with support for large files and serves files through a directory index without any problems.

I need to use Apache since I am using WSGI. I don’t want to use FastCGI or disable Apache2 for various reasons, I don’t feel like logging in.

Thanks.

+3
source share
2 answers

Beta location for mod_xsendfile on Apache2

+4
source

I have found the answer. Use the provided version of BETA. This issue seems to be fixed.

+1
source

Source: https://habr.com/ru/post/1722209/


All Articles