lighttpd 强制关闭连接

发布于 2024-11-16 23:15:18 字数 556 浏览 4 评论 0原文

我有一个 M2M 项目,它发送以下标头。

HTTP/1.1
Accept-Language: zh-cn
Accept-Encoding: gzip, deflate 
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
Host: xxx.xxx.xxx.xxx:xxxx
RANGE:bytes=0-1023
Connection: Keep-Alive

Apache 和 ISS 在响应标头中包含 connection : close,无论 keep-alive 请求如何。我认为 Lighttpd 实际上执行正确,因为它确实保持连接处于活动状态,或者不发送连接:关闭。我实际上需要它来关闭 M2M 机器的连接才能工作。我尝试过

 setenv.add-response-header = ( "connection" => "close" )

但这被忽略了,无论如何要强制关闭连接吗?

I have a M2M project that sends out the following headers.

HTTP/1.1
Accept-Language: zh-cn
Accept-Encoding: gzip, deflate 
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
Host: xxx.xxx.xxx.xxx:xxxx
RANGE:bytes=0-1023
Connection: Keep-Alive

Apache and ISS have connection : close in the response headers, regardless of the request to keep-alive. Lighttpd I assume is actually performing correctly as it does keep the connection alive, or does not send a connection : close. I actually need it to close the connection for the M2M machine to work. I tried

 setenv.add-response-header = ( "connection" => "close" )

But this is ignored, anyway to force a connection close?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来世叙缘 2024-11-23 23:15:18

您可以通过修改server.max-keep-alive-idle来做到这一点。如果您将其设置为0,那么连接将在数据提供后立即关闭

You can do this by modifying server.max-keep-alive-idle. If you set this to 0, then the connection will close right after the data is served

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文