Apache 2:如何更改http块大小?
我相信 Apache 2.x 默认 http/1.1 块大小为 8192 字节?
我没有看到更改它的指令 - 是否有任何未记录的内容?
另外,是否可以强制对文件进行分块?如果 Apache 知道总大小(如静态图像),则它通常不会对文件进行分块。这种行为可以改变吗?
I believe Apache 2.x defaults to a http/1.1 chunk size of 8192 bytes?
I don't see a directive to change it - it there anything undocumented?
Also, is it possible to force a file to be chunked? Apache will typically not chunk a file if it knows the total size (like a static image). Can this behavior be changed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到HTTP文件服务器(http://www.rejetto.com/hfs/?f=dl)可以通过修改hslib.pas中的MAXIMUM_CHUNK_SIZE和MINIMUM_CHUNK_SIZE来更改块大小。
您应该首先在 Apache HTTP 的源代码中找到“8192”。
希望它能够给予一些帮助。
I saw HTTP File Server(http://www.rejetto.com/hfs/?f=dl) can change chunk-size by modifying MAXIMUM_CHUNK_SIZE and MINIMUM_CHUNK_SIZE in hslib.pas.
You should find "8192" in Apache HTTP's source code first.
Hope it can give some help.