Get the mod_scgi binary and copy to /modules (that link is assuming Apache 2… Zed has Apache 1 on the site as well.
Configure /conf/httpd.conf according to the howto. This includes a LoadModule line and a configuration.
Get srvany.exe kit from vbRad. Expand it to a simple location like C:\srvanykit.
Run C:\srvanykit\instsrvw.exe. Follow the wizard. The PATH TO THE APPLICATION.EXE IS : C:\srvanykit\srvany.exe. THIS IS REQUIRED. You will configure the actual path to scgi_server in a minute.
Run regedit. Find the key for your service at : HKLM/System/CurrentControlSet/Services/
Add a new key : /Parameters
Add a new string value : Parameters/Application.
Value = (path-to-ruby) (path-to-scgi_server)
Ie “C:\ruby\bin\ruby.exe C:\ruby\bin\scgi_server”
Add a new string value : Parameters/AppDirectory.
Value = (path-to-rails-app-root)
Ie “D:\rails_apps\cookbook”
Open Service control panel (Start -> Control Panel -> Adminstrative Tools -> Services). Find your service. Start it… should be running!
Test the rails app: Go to http://localhost.
If you have a routes issue it needs to be addressed now.