ganeshran
ganeshran

Reputation: 3512

Hosting rails app on Windows with Apache

What is the recommended approach to host rails on windows using Apache?

I googled a lot but most links recommend mod_rails for integrating Apache with Rails. However the links are for Linux and not windows

Upvotes: 0

Views: 365

Answers (2)

Matt
Matt

Reputation: 14038

Is this for local development or for actually running a public accessible server?

Look at XAMPP.

Once you have that running, follow Eternal-Learner's answer. I originally suggested Mongrel but that seems to have been replaced by Thin.

Upvotes: 0

Litmus
Litmus

Reputation: 10986

For a stable deployment on Windows, your best bet would be JRuby and a J2EE container such as tomcat. Apache Http server can proxy to tomcat and several other j2ee containers

There are some newer options such as TorqueBox. This guide may help

Upvotes: 1

Related Questions