I am having some trouble getting my rails app to run inside my vhost.
I am using the following: Apache, Passenger, Capistrano for deploying
So i setup a vhost, called rails.mydomain.com, and its pointing to /var/www/vhosts/rails.mydomain.com which is working, as i placed a simple index page to verify the vhost is all proper.
Inside the virtualhost file for rails.mydomain.com:
<VirtualHost *:80>
ServerName rails.mydomain.com
ServerAlias rails.mydomain.com
DocumentRoot /var/www/vhosts/rails.mydomain.com
<Directory /var/www/vhosts/rails.mydomain.com>
Allow from all
AllowOverride all
Options -MultiViews -Indexes
</Directory>
#RailsBaseURI /myappname
Include /etc/apache2/production-expires.conf
CustomLog /var/log/apache2/rails.mydomain.com-access_log common
ErrorLog /var/log/apache2/rails.mydomain.com-error_log
</VirtualHost>
Since i am using Capistrano, i made a symlink: ln -s /var/www/rails.mydomain.com/myappname /var/www/rails.mydomain.com/myappname/current
I know that passenger is running, as i've messed around and got the passenger page that tells you the information about the app, however when i got that page, it was not showing the proper root path.
When I try and run http://rails.mydomain.com/myappname the app does not show up. Before it was just giving me a directory listing, but i disabled that... so now i just get a no-permissions page.
If i browse to the public http://rails.mydomain.com/myappname/releases/20120719125850/public/ I get the "welcome aboard" page. However, if i try to go further into the app into one of my controllers, i get a 404, so maybe i have deployment configuration issues as well.
So, am I on the right path here, or way off?
/var/www/rails.mydomain.com/myappname/current/public, not to/current/– Michael Berkowski Jul 19 '12 at 15:19RailsBaseURIdirective uncommented. – Michael Berkowski Jul 19 '12 at 15:34