On Fri, Mar 06, 2009 at 10:02:03PM -0500, Greg Gard wrote: > thanks for taking a look willy. let me know if there's anything else i > should change. (...) > defaults (...) > # option httpclose
This one above should not be commented out. Otherwise, client doing keepalive will artificially maintain a connection to a mongrel when they don't use it, thus preventing another client from using it. > #stable sites run win2k/iis5/asp > listen stable 192.168.1.5:10301 > option forwardfor > server stable1 192.168.1.10:10300 weight 4 check > server stable2 192.168.1.11:10300 weight 6 check You can also set a maxconn on your iis sites if you think you sometimes hit their connection limit. Maybe maxconn 200 or something like this. The stats will tell you how high you go and if there are errors. The rest looks fine. Regards, Willy

