Lighttpd load balancer?

maebiore

New Member
Moin,

weis jemand ob es einen Load Balancer für Lighttpd gibt?
Falls ja hat schon jemand damit Erfahrung gemacht?


MfG.
 
LoadBalancer FÜR lighttpd?

Ich weiss nicht genau was du meinst, aber mein LoadBalancer arbeitet VOR lighttpd. Oder meinst du eine Erweiterung für lighttpd, die Anfragen an weitere Server verteilt?
 
den gibt es und sofern du die config nicht schon umgeworfen hast,findest du es unter "mod_proxy" ( !? )

EDIT:

Auszug:
## Let lighttpd act as a proxy server for special file types, hosts etc
##
## Documentation: /usr/share/doc/lighttpd-doc/proxy.txt
## http://www.lighttpd.net/documentation/proxy.html

## Balance algorithm, possible values are: "hash", "round-robin" or "fair" (default)
#proxy.balance = "hash"


## Redirect all queries to files ending with ".php" to 192.168.0.101:80
#proxy.server = ( ".php" =>
# (
# ( "host" => "192.168.0.101","port" => 80
# )
# )
# )

## Redirect all connections on www.example.com to 10.0.0.1{0,1,2,3}
#$HTTP["host"] == "www.example.com" {
# proxy.balance = "hash"
# proxy.server = ( "" => ( ( "host" => "10.0.0.10" ),
# ( "host" => "10.0.0.11" ),
# ( "host" => "10.0.0.12" ),
# ( "host" => "10.0.0.13" ) ) )
#}
 
Last edited by a moderator:
Ähnlich wie Multipostings im Usenet sind Crosspostings in Webforen nicht gerne gesehen, da die einzelnen Threads unabhängige Diskussionen darstellen und im Allgemeinen kein Informationsaustausch zwischen ihnen stattfindet. Wurde z.B. im einen Thread schon eine Lösung für das Problem gefunden oder ein entscheidender Hinweis gegeben und im anderen Forum weiß niemand davon, wird dort u.U. immer noch weiter gerätselt. In manchen Foren werden Crosspostings allerdings geduldet, wenn die einzelnen Threads gegenseitig verlinkt sind. Dann besteht zumindest theoretisch das Problem mit dem mangelnden Informationsfluss nicht mehr.
Quelle: Wikipedia
 
Back
Top