我正在使用 Lighttpd 1.4.30在 Play Framework 中配置负载均衡器。
我在 lighttpd-inc.conf 中给出了如下条目。
$HTTP["host"] =~ "http://10.74.9.109:9020" {
proxy.balance = "round-robin" proxy.server = ( "/" =>
( ( "host" => "10.74.9.109", "port" => 9020 ) ) )
}
$HTTP["host"] =~ "http://10.74.9.109:80" {
proxy.balance = "round-robin" proxy.server = ( "/" => (
( "host" => "10.74.9.109", "port" => 9020 ),
( "host" => "10.74.9.109", "port" => 9030 ) )
)
}
我的 play 应用程序在端口 9020、9030 上运行良好。
但是当我尝试http://localhost:80
我的负载均衡器时,应该将请求转移到这些端口中的任何一个都没有发生。我只得到 Lighttpd 测试页。