将mongrel隐藏在apache2后面

创建一个服务,仅监听127.0.0.1
mongrel_rails service::install -N webcs1 -a 127.0.0.1 -p 3001 -e production -c c:\app\webcs 


然后用apache的proxy
<Proxy balancer://myCluster>
  BalancerMember http://localhost:3001
</Proxy>


可以创建多个,如果服务器足够资源的话。

你可能感兴趣的:(apache,C++,c,C#,Rails)