I'm developing a Rails app and am trying to configure the web server it's deployed on. My problem is that the page doesn't load.
In Apache's error.log there are no errors and in my app's log/production.log only the line(s) Connecting to database specified by database.yml appears.
I have no index.html in app's public folder and the application works fine in the development environment.
I'm using an Amazon instance with Ubuntu 12.04 and I've installed ruby through RVM. In my httpd.conf I have:
LoadModule passenger_module /home/ubuntu/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17/ext/apache2/mod_passenger.so
PassengerRoot /home/ubuntu/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17
PassengerRuby /home/ubuntu/.rvm/wrappers/ruby-1.9.3-p194/ruby
Apache starts without errors.
Below there is my sites-available/default:
# other virtualhosts
#
<VirtualHost *:80>
ServerName my_app.mydomain.com
ServerAdmin mail@mail.com
DocumentRoot /home/ubuntu/public_html/my_app/current/public
<Directory /home/ubuntu/public_html/my_app/current/public>
Allow from all
Options -MultiViews
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
</VirtualHost>
What should I do now to get passenger working?
access.log?– Fareesh Vijayarangam Sep 8 '12 at 13:30