14Dec/080
Setup Ruby On Rails on Windows
http://wiki.rubyonrails.org/rails/pages/HowtoInstallOnWindows
This is where to get the fastcgi dll.
http://www.fastcgi.com/dist/
Sample Apache virtual host configuration
<VirtualHost *:80>
<Directory "C:/data/projects/testapp/public/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all</Directory>
Options ExecCGI FollowSymLinks
AddHandler cgi-script .cgi
AddHandler fastcgi-script .fcgi
ServerAdmin webmaster@testapp.dev
DocumentRoot "C:/data/projects/testapp/public/"
ServerName testapp.dev
ServerAlias www.testapp.dev
ErrorLog "logs/testapp.dev-error.log"
CustomLog "logs/testapp.dev-access.log" common</VirtualHost>