Rail under Apache on Windows

I am trying to configure Apache 2 under XP to run my rails app using CGI. I have modified my httpd.conf as follows but it seems apache doesn't know I am invoking a Rails app and it gives me errors that it cannot find the resource.

Is there anything else I need to do to get rails integrated into Apache using CGI?

Thanks,

-John

LoadModule rewrite_module modules/mod_rewrite.so LoadModule env_module modules/mod_env.so

<VirtualHost *:8008>    SetEnv RAILS_ENV development    ServerName rails    DocumentRoot C:/Development/test    ErrorLog C:/Development/test/apache.log

   <Directory C:/Development/test>       RewriteEngine On       Options ExecCGI FollowSymLinks       AddHandler cgi-script .cgi       AllowOverride all       Order allow,deny       Allow from all    </Directory>

</VirtualHost>