itemprop="text">
I have apache2 running on
Ubuntu 14.04.2 LTS. The problem is, I keeps getting the following error
(tail -f)
/var/log/apache2/error.log
[Wed Jun 10 18:18:56.114203 2015] [core:error] [pid 14802] [client 10.0.0.100:48843]
AH00037: Symbolic link not allowed or link target not accessible:
/var/www/html/xxxx
In
file: /etc/apache2/sites-enabled/000-default.conf I
have
DocumentRoot
/var/www/html
Options
+FollowSymLinks
AllowOverride None
In
/var/www/html directory, I have a softlink called "xxxx" pointing to
/root/xxxx
I restarted the apache
by
service apache2
restart
But
it didn't help.
Any ideas?
Answer
Turns out my /root directory didn't have the right permission for www-data
account. Its permission was "drwx------". I did a command chmod a+rx" and it works fine now.
/root
Comments
Post a Comment