Error 403 on New Virtual Site Entry

I just added a new subdomain for my new site, but it appears that I do not have permission to view files from the web. I basically copied my main site's virtual host configuration which works correctly. Here it is:

Code:
<VirtualHost 66.28.95.136>
    ServerAdmin mmodaressi@radix.net
    DocumentRoot /home/members/KK/www
    ServerName KK.evolutionm.net
    ServerAlias kk.evolutionm.net
    LogLevel error
    ErrorLog logs/kk.evolutionm.net-error_log
    CustomLog logs/kk.evolutionm.net-access_log combined

    <Directory "/home/members/KK/www/cgi-bin">
        Options +ExecCGI
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>
My main site config looks almost identical to this except the document root and cgi directories are different of course. The access logs show an 403 response coming up. I must have something setup wrong. Here's the simple page I'm trying to access:

http://kk.evolutionm.net/index.html

Thanks for any help,

Mark

 

 

 

 

Top