I am using Phusion Passenger to deploy a rails application using apache2 on CentOS 5.5. For some reason, I keep getting this message when I start up apache:

> service start httpd
Starting httpd: Warning: DocumentRoot [/home/deploy/my_app/public] does not exist
[ OK ]

The directory most certainly does exist. Here are some important files from my configuration:

/etc/httpd/conf/httpd.conf
...
User deploy
Group deploy
...

/etc/httpd/conf.d/my_app.conf
< VirtualHost *:80>
    ServerName my_app.com
    DocumentRoot /home/deploy/my_app/public
    < Directory /home/deploy/my_app/public>
        Allow from all
        Options -MultiViews
    < /Directory>
< /VirtualHost>

The directories /home/deploy, /home/deploy/my_app, and /home/deploy/my_app/public all belong to the deploy user.

link|improve this question

What are the permissions on the directories? I'm not an expert, but the first thing that came to mind was that even though you've named the correct user in httpd.conf, it's not necessarily that user which checks if the directory exists... – vonconrad Oct 16 '10 at 11:57
I set everything to either rwxrwxrwx or rwxrw-rw-. root owns /home and deploy owns everything else along the way to /home/deploy/my_app/public. Thanks, though. – muirbot Oct 17 '10 at 23:59
feedback

2 Answers

up vote 1 down vote accepted

I ran into this problem too. Are you running SELinux? Check /etc/sysconfig/selinux, or try echo "0" >/selinux/enforce as root to see if disabling it helps.

If so, you can either modify your selinux policy to allow access to these files, or just disable selinux altogether.

link|improve this answer
I'm encountering the same problem as @muirbot, and this solution didn't help. – Randell Jun 6 '11 at 3:05
feedback

Please Check whether the /etc/sysconfig/selinux file has execute privilage. If no, grant execute privilage, restart the web server and then try again to acces the page

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.