laon88: Apache2 will nicht

Hey Leute,
habe volle kanne Probleme mit meine Apache. Habe eine standard Ubuntu v804 mit lamp. Da ich mit Aptana arbeite linke ich den apache dort in das entsprechende WebProjekt. Aber seit u804 klappt das einfach nicht meht!
Was mache ich Falsch????? Bekomme imma nur:

Forbidden

You don't have permission to access /test/ on this server.

Warum? Meine apache Konfig:

<VirtualHost *>
 ServerAdmin webmaster@localhost

DocumentRoot /var/www/
 <Directory />
  Options FollowSymLinks
  AllowOverride None
 </Directory>
 <Directory /var/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 /test/ "/home/dwa/myData/workspace/web/test/"    #!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    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>

Was mache ich falsch - Rechte sind 777 also kann Jeder! (auch www-data) lesen

  1. das zeigt die error log

    192.168.178.20 - - [17/Sep/2008:21:33:59 +0200] "GET /test/ HTTP/1.1" 403 329 "-" "Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.1) Gecko/2008072820 Firefox/3.0.1"