Hi I'm running Passenger/mongo/Rails 3.2 (no activerecord or mysql) with a Capistrano deploy script.
I'm trying to get my app to run in production mode on my linux server.
In my apache config file i have the following...
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /srv/www/example.com/current/public
ErrorLog /srv/www/example.com/current/log/error.log
CustomLog /srv/www/example.com/current/log/access.log combined
PassengerDefaultUser www-data
<Directory /srv/www/test.example.com/current/public>
AllowOverride all
Options -MultiViews
</Directory>
RailsEnv production
</VirtualHost>
EDIT: In my environment.rb file I no longer have the following...
RAILS_ENV="production"
RAILS_ENV.freeze
In my Capistrano deploy.rb I have the following...
set :rails_env, "production"
EDIT: But when I deploy via capistrano or do a sudo service apache2 restart. It says apache restarts but the server never comes up when i access the url.
