Greg
Greg

Reputation: 34798

Can I deploy a Ruby on Rails webapp to an IIS webserver?

Can I deploy a Ruby on Rails webapp to an IIS webserver?

Is there any solid support for this somehow?

Upvotes: 2

Views: 651

Answers (2)

Jörg W Mittag
Jörg W Mittag

Reputation: 369428

Microsoft's Ruby Implementation for the .NET Framework, IronRuby contains the IronRuby.Rack adapter, which lets you run any Rack-based web application, including Ruby on Rails apps, but also Sinatra, Merb, Camping and others on IIS.

Unfortunately, there's no pre-compiled binary yet, but here's a nice screencast that walks you through compiling the Rack adapter and deploying a simple app on IIS.

Upvotes: 3

kgiannakakis
kgiannakakis

Reputation: 104168

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

Upvotes: 2

Related Questions