Deployment issues

PLEASE HELP!!!
I just did my first installation of ruby on rails. When I go to
www.mysite.com I get the following error:

We’re sorry, but something went wrong.

We’ve been notified about this issue and we’ll take a look at it
shortly.

=====================================
config/routes.rb:

map.root :controller => “home”
map.connect ‘:controller/:action/:id’
map.connect ‘:controller/:action/:id.:format’
end

httpd.conf:

ProxyRequests off

<VirtualHost *:80>
ServerName mysite.com
ServerAlias www.mysite.com

ProxyPass / http://www.mysite.com:8000/
ProxyPassReverse / http://www.mysite.com:8000
ProxyPreserveHost on
=====================================

On 19 February 2010 07:26, Farhad [email protected] wrote:

PLEASE HELP!!!
I just did my first installation of ruby on rails. When I go to
www.mysite.com I get the following error:

We’re sorry, but something went wrong.

We’ve been notified about this issue and we’ll take a look at it
shortly.

Have a look in development.log and also in the window where you ran
script/server. There should be more information on the problem.

Colin