Passenger apache default page error
Posted
by Ganesh Shankar
on Stack Overflow
See other posts from Stack Overflow
or by Ganesh Shankar
Published on 2010-04-27T06:26:09Z
Indexed on
2010/04/27
6:33 UTC
Read the original article
Hit count: 441
Sorry if this is the wrong place to ask this question. I asked it a couple of days ago on Server Fault but am getting no love. (It is sort of related to rails development...)
The Question
I just installed Passenger and the Passenger Pref Pane on OSX. However, when I try to browse to one of my Rails applications I just get the default Apache "it works!" page.
I've checked the vhost definitions and they seem ok so I can't seem to figure out whats wrong... I've tried reinstalling passenger and the pref pane and restarting apache but to no avail.
Anyone know how to fix this?
My vhost definition looks like this:
<VirtualHost *:80>
ServerName boilinghot.local
DocumentRoot "/Users/ganesh/Code/boilinghot/public"
RailsEnv development
<Directory "/Users/ganesh/Code/boilinghot/public">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
© Stack Overflow or respective owner