How can I set up my rails application to be served from the root of my
server. Currently I have to enter http://www.mysite.com/site to load
the application. It would like it to load from http://www.mysite.com/.
My rails application is in a directory named “myapp” and the server
serves files from “public_html”
It depends on what level of control you have over your setup.
The simple answer is to change the document root of apache (or
whatever server you’re using) to point to the root of your rails app.
Alternatively as long as you have mod_rewrite configuration allowed
you could use it to rewrite everything to /site in the root
public_html directory.