This question has not been asked since Rail 3.0 came out (or I cannot find it):
How to run Rails 3+ application on Apache on Windows (WAMP)? Is Mongrel the best option? Sounds not optimal to me to have Apache as a proxy and then another server. Passenger does not exist on Windows.
What I hope to get from your is a link to a magical installation package and a snippet from the httpd.conf file that would divert one to a rails application.
The advantage of using apache (or nginx) as a proxy is that it can load-balance between different mongrel (or thin) instances. So you would have to start three mongrel instances (services) and configure apache to proxy those.
Configuring apache to different mongrel processes is pretty straightforward, can be found all over the internet. Here is an example of a
httpd-vhosts.conf(replaceyourapplicationby your actual application/domain and root-folder):Another, very promising alternative to deploy on windows is using TorqueBox.
TorqueBox is JBoss/Jruby based solution, and thus platform independent. In benchmarks it is shown that TorqueBox performs incredibly well, and actually anybody should seriously consider switching to it.
Hope this helps.