Apache Name Based Site Configuration, Someone please help !
HelloI am trying to configure httpd.conf manually for name based virtual sites.
IP based sites work without problem but as soon as I add a virtual name based site " all undefined sites resolved to server's shared IP go to that new site !!!!! except the domain that most go to it

Let me show you:
NameVirtualHost 192.168.0.1
<VirtualHost 192.168.0.1>
ServerName atlas.com
DocumentRoot /home/atlas/public_html
ServerAlias *.atlas.com
Options ExecCGI Indexes
</VirtualHost>
<VirtualHost 192.168.0.1>
ServerName atlas.com
DocumentRoot /home/atlas/public_html
ServerAlias *.atlas.com
Options ExecCGI Indexes
</VirtualHost>
When I type atlas.com (which resolves to 192.168.0.1 too) the following error comes to screen :
Directory Listing Denied
This Virtual Directory does not allow contents to be listed.
This Virtual Directory does not allow contents to be listed.
Thank you
Techi