I was suffering the same thing so:

I did this:

    first in httpd.conf file, after:
     LoadModule passenger_module /opt/ruby-enterprise/lib/ruby/gems/
1.8/gems/passenger-2.1.2/ext/apache2/mod_passenger.so
     PassengerRoot /opt/ruby-enterprise/lib/ruby/gems/1.8/gems/
passenger-2.1.2
     PassengerRuby /opt/ruby-enterprise/bin/ruby

     RailsSpawnMethod conservative  #This I wrote it, just because the
user guide says that is necesary to do it, when works well in mongrel
not in Passenger.


  Next inside apache2/conf/extra/httpd_vhosts.conf


<VirtualHost *:80>
      ServerName www.sitename.com.mx             #Domain name to
public
      DocumentRoot "/usr/local/apache2/htdocs/sitename/public"   #the
place where where app is in filesystem --erase this comment because
apache give an error.
      RailsEnv development                                  #Say to
pasenger that our app is in development.

     </VirtualHost>

    It could be necesary check the path to ruby binary files ...

   I hope this help.


On 31 mar, 17:30, crayfellow <[email protected]> wrote:
> I'm sure this is something common I'm missing.
>
> I have installed Rails on Ubuntu using the helpful information 
> athttp://guides.rubyonrails.org/getting_started.htmlandhttps://help.ubuntu.com/community/RubyOnRails
>
> I'm just trying to get Hello World working before moving on to other
> things. I have deleted the public/index.html (which displays fine with
> Apache) and done the following:
> script/generate controller home index
> edit config/routes.rb and add the line map.root :controller => "home"
> above the default routes
>
> Pretty simple.... so I got the Passenger error at first because root
> owned config/environment.rb so it is now owned by www-data.
>
> Now, I get Error 500 no matter what I do.
>
> Fire up Mongrel and go tohttp://blah.mydomain.com:3000/and it works
> perfectly. Go tohttp://blah.mydomain.com/and, Error 500 "We're
> sorry, but something went wrong."
>
> I hope this is something simple with the Apache config I'm simply
> missing. I presume since the error shows up at all that my Passenger
> config is at least correct in part.
>
> Anyone?
> Thanks,
> -Patrick

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to