Posted 3 years ago
Configure Ruby to run on Apache on Windows
This is really easy to run ruby. Follow this page.
http://www.editrocket.com/articles/ruby_apache_windows.html
The only extra information I had to do was add is my directory permissions on the virutal host.
…
<Directory “c:/webserver/yoursite/”>
Options FollowSymLinks ExecCGI
…
Now you ruby file should work, dont forget that it must have #!/ruby/bin/ruby at the top otherwise Apache doesn’t know how to execute this file on Windows.