Hi, I'm using lighttpd 1.4.10 on a CentOS 4.2/x86-64 box which has
been configured to be a reverse proxy to Apache 2.2/mod-php server.
lighttpd listens on the routable IP port 80 and Apache listens on
127.0.0.1 port 80
If I have the following config
$SERVER["socket"] == "ip.ad.dr.ess:80" {
proxy.balance = "round-robin"
proxy.server = ( "" => ( ( "host" => "127.0.0.1" )
) )
}
I get the following when I visit the website hosted on the ip
2006-02-11 04:23:14: (log.c.75) server started
2006-02-11 04:23:22: (mod_proxy.c.1249) no proxy-handler found for: /
2006-02-11 04:23:22: (mod_proxy.c.1249) no proxy-handler found for: /favicon.ico
switching proxy.balance to either "hash" or "fair" makes everything
work. Does anybody else use "round-robin" as a reverse proxy balance
mechanism. I was hoping round-robin would become a no-op when there
is only one backend server.