To setup Rails on windows after Ruby and Rails setup,
i) Edit
hosts file in windows environment and set the server name in the hosts file to
127.0.0.1 myrails
In this example, i have used "myrails" as the server name for the project.
ii) Edit httpd configuration setting on WAMP to make sure proxy and proxy_http module is turned on (check if it those lines are not commented out)
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
(more…)