Weird poblem with Apache httpd.conf please help!

I have a serious problem with my VPS. Everyday at a specific time, (I don't know the exact time) my httpd.conf changes. Somehow, these lines get added to my httpd.conf:
<VirtualHost 209.152.185.179>
ServerName vps185-179.servernode.net
DocumentRoot /usr/local/apache/htdocs
</VirtualHost>

And, my web sites fail when this happens. It displays "There is no web site configured at this addres" on all of my web sites. I manually remove the above lines from the httpd.conf, restart the apache server, and everything starts to work! Same thing happens next day! This started to happen after my hosting compnay had problems with their datacenter last week. Everything was just fine before. Please help!

Here is my VPS config in httpd.conf:
##
## SSL Virtual Host Context
##


</IfDefine>

#<VirtualHost 209.152.185.179>

#BytesLog domlogs/vps185-179.servernode.net-bytes_log
#ServerName vps185-179.servernode.net
#DocumentRoot /usr/local/apache/htdocs
#</VirtualHost>
NameVirtualHost *
<VirtualHost *>
ServerAlias dropfiles.net
ServerAdmin webmaster@dropfiles.net
DocumentRoot /home/dropfile/public_html

#BytesLog domlogs/dropfiles.net-bytes_log
#BytesLog domlogs/dropfiles.net-bytes_log
ServerName www.dropfiles.net

User dropfile
Group dropfile
#CustomLog /usr/local/apache/domlogs/dropfiles.net combined
#Weird poblem with Apache httpd.conf please help!criptAlias /cgi-bin/ /home/dropfile/public_html/cgi-bin/
</VirtualHost>
#NameVirtualHost 209.152.185.179:80

<VirtualHost *>
ServerAlias fantasy-sextoys.com
ServerAdmin webmaster@fantasy-sextoys.com
DocumentRoot /home/fantasy/public_html

#BytesLog domlogs/fantasy-sextoys.com-bytes_log
#BytesLog domlogs/fantasy-sextoys.com-bytes_log
ServerName www.fantasy-sextoys.com

User fantasy
Group fantasy
CustomLog /usr/local/apache/domlogs/fantasy-sextoys.com combined
ScriptAlias /cgi-bin/ /home/fantasy/public_html/cgi-bin/
</VirtualHost>
#NameVirtualHost 209.152.185.179:80
<VirtualHost *>
ServerAlias proxylord.com
ServerAdmin webmaster@proxylord.com
DocumentRoot /home/proxyl/public_html
#BytesLog domlogs/proxylord.com-bytes_log
ServerName www.proxylord.com

User proxyl
Group proxyl
CustomLog /usr/local/apache/domlogs/proxylord.com combined
ScriptAlias /cgi-bin/ /home/proxyl/public_html/cgi-bin/
</VirtualHost>

 

 

 

 

Top