-
All replies
-
Helpful answers
-
Mar 28, 2016 9:49 PM in response to wrishelby Markus Greiner,Hi,
I had a similar problem until I finally noticed that the user configuration under /etc/apache2/users/<your short user name>.conf was not seen by apache for the following reason:
/etc/apache2/httpd.conf contains an import to find the user configuration:
# User home directories
#Include /private/etc/apache2/extra/httpd-userdir.conf
This line was commented, and needs to be uncommented with sudo vi /etc/apache2/httpd.conf
Include /private/etc/apache2/extra/httpd-userdir.conf
Double check /etc/apache2/extra/httpd-userdir.conf. It should contain the line:
Include /private/etc/apache2/users/*.conf
which actually looks are your user configuration for your directories.