en Apache en Ubuntu he configurado un vhost, pero en el navegador sigo recibiendo un error "403 Acceso prohibido"; el registro dice " Cliente denegado por la configuración del servidor: / home / remix / ".
Buscando la solución en línea, encontré muchas publicaciones sobre el acceso al directorio (Permitir desde todas, etc.), pero que yo sepa, ya lo hice. En httpd-vhosts.conf hay 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
al archivo / etc / hosts.
Además, la carpeta / home / remix / contiene un archivo index.html y los vhosts están habilitados en httpd.conf.
¿Hay algo que no esté viendo?
Editar: Esta es la entrada Apache error_log:
[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/