2.4.3. And add these lines to the httpd.conf:
LoadModule passenger_module /home/user/.rvm/gems/ruby-1.9.3-p385/gems/passenger-3.0.19/ext/apache2/mod_passenger.so
PassengerRoot /home/user/.rvm/gems/ruby-1.9.3-p385/gems/passenger-3.0.19
PassengerRuby /home/user/.rvm/wrappers/ruby-1.9.3-p385/ruby
<VirtualHost *:80>
# !!! Be sure to point DocumentRoot to 'public'!
DocumentRoot /home/user/RailsProject/MEbGDP/public
<Directory /home/user/RailsProject/MEbGDP/public>
# This relaxes Apache security settings.
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
# MultiViews must be turned off.
# Options -MultiViews
</Directory>
</VirtualHost>