Can I install Ruby on Rails web server on IIS web server?

Is it possible to deploy Ruby on Rails web server on an IIS web server?

Is there some solid support for this?

+2


a source to share


2 answers


Have a look at Quick CGI for Ror . You can also find instructions here .



+2


a source


Microsoft's Ruby implementation for the .NET Framework, IronRuby contains IronRuby.Rack

that allows you to run any web application on a rack, including Ruby on Rails applications, as well as Sinatra, Merb, Camping and others in IIS.



Unfortunately, there are no precompiled binaries yet, but here's a nice screencast that lets you compile a Rack adapter and deploy a simple application to IIS.

+3


a source







All Articles