apache 2.0.4.0 virtual host woes

hey there,

i'm having some problems setting up a subdomain with apache, here's the section of my httpd.conf that is dedicated to VirtualHosts

Code:
<VirtualHost dev.fsckme.net>
    DocumentRoot /home/mikey/dev/
    ServerName dev.fsckme.net
</VirtualHost>

<VirtualHost fsckme.net>
    DocumentRoot /var/www/fsck/
    ServerName fsckme.net
</VirtualHost>
<VirtualHost www.fsckme.net>
    DocumentRoot /var/www/fsck/
    ServerName fsckme.net
</VirtualHost>

<VirtualHost www.crescent-fresh.net>
    DocumentRoot /var/www/cres/
    ServerName crescent-fresh.net
</VirtualHost>
<VirtualHost crescent-fresh.net>
    DocumentRoot /var/www/cres/
    ServerName crescent-fresh.net
</VirtualHost>

<VirtualHost radio.ub3r.net>
    DocumentRoot /var/www/radio/
    ServerName radio.ub3r.net
</VirtualHost>
The problem i'm having is that whenever i try to access radio.ub3r.net it interprets it as me trying to access dev.fsckme.net . I know this because i tested out trying to access a non-existant file on the radio.ub3r.net subdomain by pointing my domain to http://radio.ub3r.net/fdasfdas.htm, and having the error log say that it tried to access a file under /home/mikey/dev/ .

Any help you could provide would be appreciated, i have ran service httpd configtest and it worked just fine.

Love,
ub3r

 

 

 

 

Top