ActionController::RoutingError (No route matches [GET] "/"): ActionController::RoutingError (No route matches [GET] "/"): nginx nginx

ActionController::RoutingError (No route matches [GET] "/"):


You need to setup a root route in routes.rb file.

root :to => 'index#index'

Where the first index is the controller name (IndexController) and the second index is the action name in the IndexController.