hi, I installed the passenger on apapche2 by following the
http://www.modrails.com/install.html link. I added the below lines to /
etc/httpd/conf/httpd.conf file.
LoadModule passenger_module /usr/local/rvm/gems/ruby-1.9.2-p290/gems/
passenger-3.0.11/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/rvm/gems/ruby-1.9.2-p290/gems/
passenger-3.0.11
PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.2-p290/ruby
and i added below lines to the same file only.
<VirtualHost
192.168.1.75:80>
ServerName
www.example.com
ServerAdmin
webm...@example.com
DocumentRoot /var/www/rails-beta/public
<Directory /var/www/rails-beta/public>
AllowOverride all
Options -MultiViews
</Directory>
</VirtualHost>
When i try to access it in browser it give the following error:
The connection has timed out
The server at 192.168.1.75 is taking too long to respond.
Please help me to solve this problem