When accessing a site defined in my local dev environment, I can't seem to get past a 403 Forbidden error.
Under /etc/apache2/sites-available/ I have defined a file fun.local:
<VirtualHost *:80>
ServerName fun.local
DocumentRoot /home/noah/work/fun
ErrorLog /var/log/apache2/fun-error.log
<Directory /home/noah/work/fun>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
The the apache error log for the site contains this error:
[Sat Aug 21 13:34:34 2010] [crit] [client 127.0.0.1] (13)Permission denied: /home/noah/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
I am running apache2 and ubuntu 10.04.
ls -la
on/home/noah
– Marco Ceppi Aug 22 '10 at 12:24