Tengo instalado apache2 en ubuntu hardy y, sin dar ningun error al arrancar el servicio:
Código:
javiribera@PCJavi:~$ sudo /etc/init.d/apache2 restart
* Restarting web server apache2 [ OK ]
javiribera@PCJavi:~$
Me aparece este mensaje al entrar por el webrowser en localhost
Código:
Forbidden
You don't have permission to access / on this server.
Apache/2.2.8 (Ubuntu) Server at localhost Port 80
- Tengo el puerto 80 TCP abierto para mi IP
- Y mi /etc/apache2/sites-available/default es este
Código:
NameVirtualHost *
<VirtualHost *>
ServerAdmin bujanserver@localhost
ServerName localhost
DocumentRoot /home/javiribera/ascent/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/javiribera/ascent/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
-También tengo puesto Listen 80 en ports.conf
- Y ServerName localhost en apache2.conf
Me resulta extraño porque si es cuestión de permisos de la carpeta, diría que están bien...
http://img361.imageshack.us/img361/5527/pantallazopropiedadesdecs1.th.png
¿Alguien me puede echar un cable?
Gracias