Apache httpd permissions
Posted
by
DD.
on Server Fault
See other posts from Server Fault
or by DD.
Published on 2012-06-06T11:35:15Z
Indexed on
2012/09/15
15:39 UTC
Read the original article
Hit count: 198
I have created a directory
/xyz/www
With the following permissions:
-rw-r--r--. 1 myuser developers
I edited my http.conf:
DocumentRoot "/xyz/www/"
<Directory "/xyz/www/">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
I get 403 error: You don't have permission to access / on this server.
Looking in the logs:
(13)Permission denied: Can't open directory for index: /xyz/www/
I've tried recursively adding 777 permissions but still have the same issue.
© Server Fault or respective owner