This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 61087a3429087094abb1028be744b759345f6280
tree e2b85112725cf238aba7f94530aa605f6108e644
parent 976a043a410a1ad74be1f0588ebe4a78b304095d
tree e2b85112725cf238aba7f94530aa605f6108e644
parent 976a043a410a1ad74be1f0588ebe4a78b304095d
| name | age | message | |
|---|---|---|---|
| |
.gdbinit | Tue Sep 16 14:05:35 -0700 2008 | [gnosek] |
| |
README | Mon Mar 24 16:22:10 -0700 2008 | [grempe] |
| |
config | Sat Mar 22 08:46:08 -0700 2008 | [gnosek] |
| |
ngx_http_upstream_fair_module.c | Sat Sep 20 10:51:51 -0700 2008 | [gnosek] |
README
Nginx Upstream Fair Proxy Load Balancer -- Description: -- The Nginx fair proxy balancer enhances the standard round-robin load balancer provided with Nginx so that it will track busy back end servers (e.g. Thin, Ebb, Mongrel) and balance the load to non-busy server processes. Ezra Zygmuntowicz has a good writeup of the fair proxy load balancer and how to use it here: http://brainspl.at/articles/2007/11/09/a-fair-proxy-balancer-for-nginx-and-mongrel Installation: -- You'll need to re-compile Nginx from source to include this module. Modify your compile of Nginx by adding the following directive (modified to suit your path of course): ./configure --with-http_ssl_module --add-module=/absolute/path/to/nginx-upstream-fair make make install Usage: -- Change your Nginx config file's upstream block to include the 'fair' directive: upstream mongrel { fair; server 127.0.0.1:5000; server 127.0.0.1:5001; server 127.0.0.1:5002; } Contributing: -- Git source repositories: http://github.com/gnosek/nginx-upstream-fair/tree/master http://git.localdomain.pl/?p=nginx-upstream-fair.git;a=summary Please feel free to fork the project at GitHub and submit pull requests or patches.





