Project

General

Profile

Actions

Bug #516

closed

using round-robin as a balance scheme to reverse proxy to a single server doesn't seem to work

Added by Anonymous about 18 years ago. Updated about 16 years ago.

Status:
Fixed
Priority:
Normal
Category:
mod_proxy
Target version:
-
ASK QUESTIONS IN Forums:

Description

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.

-- yusufg


Files

Actions #1

Updated by Anonymous over 17 years ago

$SERVERsocket == "ip.ad.dr.ess:80" {
proxy.balance = "round-robin"
proxy.server = ( "" => ( ( "host" => "127.0.0.1" )
) )

Actions #2

Updated by Anonymous almost 17 years ago

I'm seeing the same problem with 1.4.15. Is anybody reading these bug reports?

Actions #3

Updated by stbuehler about 16 years ago

I think i found the bug, patch attached.

Actions #4

Updated by stbuehler about 16 years ago

  • Status changed from New to Fixed
  • Resolution set to fixed

Fixed in r2092

Actions

Also available in: Atom