Successful Settings for Apache forwarding to Mongrel
So, after a day of working on it, I finally fixed the problems I was having. I wanted to have Apache forward all traffic hitting a path to a mongrel server running in a rails application. So, I did as bish0p suggested, and set up the rails app to accept this behavior. First, I put this at the bottom of my environment.rb: ActionController::AbstractRequest.relative_url_root = “/MyRailsApp” This make it so all the urls in the Rails app are prepended with /MyRailsApp. [...]

