On 1/4/07, Jim Douglas <[EMAIL PROTECTED]> wrote: > > Thanks for the link, it's been updated since I last visited....all I had to > do was add the first sample config from Martins in the 'Success Stories' > section and I'm up and running...
Good, glad you liked those, i have a few more I need to get around to posting.... ;-) > > I would really like to know how to integrate multiple instances of mongrel > at this point...how can I modify this section > > # Pass other requests to mongrel instance > ProxyPass / http://127.0.0.1:8200/ > ProxyPassReverse / http://127.0.0.1:8200/ > > ...so that it can utilize a mongrel cluster? Short answer: you can't. proxypass simply just proxies everything from the one port apache httpd is running (80) to one specified in the proxypass rule -- in this case, 8200 - so even if you were running a mongrel cluster on 8200, 8201 and 8203, it would only proxy to the first one, on 8200. Hence the reason we use mod_proxy_balancer with allows you to proxy requests from on port (80) to multiple -> 8200, 8201, 8202, etc. in an intelligent manner (based on requests coming in). -- Charles Brian Quinn self-promotion: www.seebq.com highgroove studios: www.highgroove.com slingshot hosting: www.slingshothosting.com Ruby on Rails Bootcamp at the Big Nerd Ranch Intensive Ruby on Rails Training: http://www.bignerdranch.com/classes/ruby.shtml _______________________________________________ Mongrel-users mailing list Mongrel-users@rubyforge.org http://rubyforge.org/mailman/listinfo/mongrel-users