Marlon Moyer wrote:
> yes.  Aside from ColdFusion and the new RoR apps that I'm creating, 
> we're a 100% microsoft shop.  Is it possible to run both IIS and Apache 
> on the same win32 server?  I've never tried that, but as long as it 
> wouldn't interfere with the normal IIS operation, I think I could get 
> that done.
> 
> As for the reverse proxy, that would only hit 1 mongrel process right? 

Apache (2.2) has a proxy balancer, so you could proxy several mongrel 
instances.

Here is a blog post that I just found from a quick google search.

* http://rubyurl.com/z1M

You'll want to look at these sections.

<Proxy balancer://mongrel_cluster>
   BalancerMember http://127.0.0.1:8000
   BalancerMember http://127.0.0.1:8001
   BalancerMember http://127.0.0.1:8002
</Proxy>

and where it's using rewrite to talk to the balancer.

Putting Apache on port 80 and hiding IIS behind it might be a good 
solution for many of your hosting needs in your all-windows environment.

Good luck!

Robby

-- 
Robby Russell
http://www.robbyonrails.com/
http://www.planetargon.com/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Deploying Rails" group.
To post to this group, send email to rubyonrails-deployment@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-deployment?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to