Internal Subdomain

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • arggg
    New Member
    • Mar 2008
    • 91

    Internal Subdomain

    I have an internal server that we get to by just typing in http://ServerStats/ and it will take you to the webpages. However I want to create a http://dev.ServerStats/ so that I can keep development seperate from production. It appears anytime I make a change with my virtual hosts it will mess up http://serverstats/. It now appears that http://ServerStats/ is now directing to the path that dev.serverstats should be routing too.

    I have vhosts.conf included in httpd.conf.

    Here is my vhosts.conf file
    Code:
    NameVirtualHost *:80
    <VirtualHost *:80>
     ServerName dev.servertstats
     DocumentRoot "E:/www/apache/htdocs/htdev"
    </VirtualHost>
  • arggg
    New Member
    • Mar 2008
    • 91

    #2
    Originally posted by arggg
    I have an internal server that we get to by just typing in http://ServerStats/ and it will take you to the webpages. However I want to create a http://dev.ServerStats/ so that I can keep development seperate from production. It appears anytime I make a change with my virtual hosts it will mess up http://serverstats/. It now appears that http://ServerStats/ is now directing to the path that dev.serverstats should be routing too.

    I have vhosts.conf included in httpd.conf.

    Here is my vhosts.conf file
    Code:
    NameVirtualHost *:80
    <VirtualHost *:80>
     ServerName dev.servertstats
     DocumentRoot "E:/www/apache/htdocs/htdev"
    </VirtualHost>
    the ServerName is really dev.serverstats with no t after server, sorry that was a type.

    Comment

    Working...