反向代理lighttpd https无法正常工作

时间:2016-02-03 07:43:21

标签: tomcat https proxy lighttpd forwarding

我的服务器上运行了多个Tomcats。我使用lighttpd来反向代理不同域的传入请求。到目前为止,我只使用没有https的http,这个配置对我有用:

$HTTP["host"] == "my.domain.com" {
    proxy.server  = ( "" => ( (
            "host" => "127.0.0.1",
            "port" => 8080
    ) ) )
}

但是当我尝试相同并且只将端口更改为https端口时,我只看到一个空白页面。我需要做什么才能将流量重定向到使用https的Tomcat。

1 个答案:

答案 0 :(得分:1)

您需要使用$SERVER["socket"]而不是$HTTP["host"]例如

$SERVER["socket"] == "my.domain.com:443" {
    proxy.server  = ( "" => ( (
        "host" => "127.0.0.1",
        "port" => 8080
    ) ) )
}