Virtualhosts keep pointing to DocumentRoot?

freaky

OSXer
I enabled Personal Web Sharing and for some reason whenever I try to go to one of my sites using mysite.dev it just goes to the DocumentRoot folder and not the folder that the site is in. Can someone tell me what the problem is?

Here is a virtualhost example:

<VirtualHost *>
DocumentRoot /Users/jeff/Sites/mysite.com
ServerName mysite.dev
ScriptAlias /cgi-bin /Users/jeff/Sites/mysite.com/cgi-bin
<Directory /Users/jeff/Sites/mysite.com>
Options All
AllowOverride All
</Directory>
</VirtualHost>

When I go to mysite.dev in my browser it just shows the contents of /Users/jeff/Sites/. Any ideas?
 
Back
Top