in my rails app i don't have a index.html page under the public folder. instead is got a home controller with a view for my home page, my routes.rb has the following entry:
root :to => "home#index"
if I put a index.html page under public i see it, but that's not what I want. how can I get my test app to run without the index page under public?
I am learning that's why I am bothering =) Before I can deploy to my test "production" webserver I want to figure out things.
I managed to get passenger working with Apache that I built from source just now, that went a bit smoother. Still I would like to know how to do the same thing with nginx.