Lighttpd代理curl GET无法关闭连接

时间:2018-11-02 17:01:32

标签: http curl lighttpd

我已将lighttpd设置为将代理请求反向到某个URL。 lighttpd.conf文件如下所示:

server.modules = (
    default modules,
    "mod_proxy",
)

$HTTP["url"] =~ "(^/myurl)" {
    proxy.server = ( "" => ( "" => ( "host" => "127.0.0.1", "port" => 8080 )))
}

代理将对/ myurl的请求转发到我的自定义后端软件。

我注意到代理的GET请求始终具有

Connection: close
请求标头中的

。结果,代理连接似乎在每个请求之后关闭。有没有一种方法可以强制

Connection: Keep-alive

0 个答案:

没有答案