I have a Rails app running at https://bobrock.heliohost.us/home that does just fine in development mode. But when I switch to production mode the site will no longer load. Of course, in production mode, I can't see whatever error is causing the problem.
On my local machine, I can switch between development and production without any problems, but I had to add
config.hosts << "localhost"
to the `production.rb` local environment file to make it work.
I added
config.hosts << "bobrock.heliohost.us"
to the `production.rb` remote environment file, but that didn't clear the error.
What else should I try to get things running in production mode?