Default Page loads on All VirtualHosts

Discussion in 'Apache' started by php4ever, May 15, 2007.

  1. #1
    Here is my apache conf file I'm using for the VirtualHost 99% of the time I never have these problems as I've setup many servers but this one baffles me.

    When you visit one of the domains in the VirtualHost list all I get is the temporary default HTML page on every single domain.

    I'm stumped;

    NameVirtualHost 204.14.71.81:80
    NameVirtualHost 204.14.71.83:80

    ################################################
    #################### RENTALS ###################

    ################## Cleveland Circle Apt ################
    <VirtualHost 204.14.71.83:80>
    ServerName clevelandcircleapt.com
    ServerAlias clevelandcircleapt.com
    ServerAdmin webmaster@clevelandcircleapt.com
    DocumentRoot /var/www/clevelandcircleapt.com/httpdocs
    ErrorLog /var/log/host.clevelandcircleapt.com-error_log
    CustomLog /var/log/access_log common
    </VirtualHost>

    ################## Cleveland Circle Apts ################
    <VirtualHost 204.14.71.83:80>
    ServerName clevelandcircleapts.com
    ServerAlias clevelandcircleapts.com
    ServerAdmin webmaster@clevelandcircleapts.com
    DocumentRoot /var/www/clevelandcircleapts.com/httpdocs
    ErrorLog /var/log/host.clevelandcircleapts.com-error_log
    CustomLog /var/log/access_log common
    </VirtualHost>

    #############################################
    ################### SALES ###################

    ################## Boston Loft Condo ################
    <VirtualHost 204.14.71.81:80>
    ServerName bostonloftcondo.com
    ServerAlias bostonloftcondo.com
    ServerAdmin webmaster@bostonloftcondo.com
    DocumentRoot /var/www/bostonloftcondo.com/httpdocs
    ErrorLog /var/log/host.bostonloftcondo.com-error_log
    CustomLog /var/log/access_log common
    </VirtualHost>
     
    php4ever, May 15, 2007 IP
  2. CodyRo

    CodyRo Peon

    Messages:
    365
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Can you verify the path's are 100% correct? Is it just pointing to the ServerRoot path?
     
    CodyRo, May 15, 2007 IP