I am trying to set up a owncloud server using httpd. In my /var/www/html I set the owner and group to apache:apache and permission of 644.
In my httpd.conf file I have the following.
DocumentRoot /var/www/html <Directory "/var/www/html/owncloud"> Options Indexes FollowSymLinks AllowOverride All order allow,deny allow from all </Directory> I am able to read the php files in the document root, however, when I browse to /owncloud I am getting a 403 Forbidden error.
In my error log I am getting the following.
(13)Permission Denied: access to /owncloud denied Am I missing any configuration?