en Apache en Ubuntu he configurado un vhost, pero en el navegador me sale un "403 Acceso prohibido" error; el registro dice "Cliente negado por la configuración del servidor: /home/remix/".
Buscando la solución en internet encontré muchos posts sobre el acceso a directorios (Allow from all, etc), pero como sé que ya lo hizo. En httpd-vhosts.conf es el siguiente código:
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "/opt/lampp/htdocs/"
ServerName localhost
ServerAlias localhost
ErrorLog "logs/dummy-host.example.com-error_log"
CustomLog "logs/dummy-host.example.com-access_log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "/home/remix/"
ServerName testproject
ServerAlias testproject
<Directory "/home/remix/">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
También he añadido
127.0.0.1 testproject
para el archivo /etc/hosts.
También, el /home/remix/ carpeta contiene una index.html archivo y vhosts están habilitados en el httpd.conf.
Hay algo que no estoy viendo?
Edit: Este es el error_log de Apache entrada:
[Sat Aug 18 09:15:32.666938 2012] [authz_core:error] [pid 6587]
[client 127.0.0.1:38873] AH01630: client denied by server configuration: /home/remix/