vote up 0 vote down star

Hey folks,

I have a clean copy of CentOS.

Just installed Apache, PHP and MySQL. Everything works like a charm.

Except for I created a new user, let's call it 'demo'.

I created a new virtual directory in httpd.conf and pointed it to '/home/demo/www'. I created an empty index.html under '/home/demo/www'.

Apache is running under user 'apache' and group 'apache'.

Maybe user 'apache' does not have access to user 'demo's file, that's why I get the Forbidden problem?

Do you have any ideas how to solve this problem?

Thanks,

James

flag
You really should add some details: htaccess , owner/permissions of your files etc. Did you already check permission problems ? – Peter Parker Oct 29 at 17:50
Owner of the new virtual directory is user 'demo'. Apache is running as user 'apache'. Yes, I think this might be a permission problem. Do you have any ideas how to fix it? – James Oct 29 at 17:51
usually apache just needs to read from files and usually the permission is read access granted for all. You can do a "chown -R apache:apache /home/demo/www" to change ownership to apache – Peter Parker Oct 29 at 18:01
Still not working. So changed back the ownership to demo:demo. Here is the httpd.conf: pastebin.com/m2fe5114b – James Oct 29 at 18:09
Did you check for a trailing slash problem? – Peter Parker Oct 29 at 19:13

2 Answers

vote up 0 vote down check

The solution was to give a 'chmod 755' to '/home/demo'.

link|flag
vote up 1 vote down

Without seeing your config files It is difficult to find the right spot, however Apache will not show 403 if he does not have permissions on files.

403 means the client(your browser) has not a permission to view the content

I think you have a trailing slash problem. Just try this code:

<VirtualHost *:80>
    ServerAdmin hello@demosite.com
    DocumentRoot /home/demo/www/
    ServerName DemoSite
    ErrorLog logs/sb-error_log
    CustomLog logs/sb-access_log common
</VirtualHost>
link|flag
pastebin.com/m2fe5114b The VirtualHost entry is in the bottom. – James Oct 29 at 18:10

Your Answer

Get an OpenID
or

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