I'm trying to set up virtual hosts on my VPS (centos). I set both domain nameservers to fns1.dnspark.net and fns2.dnspark.net and set an A record there for each domain pointing to my IP address 50.16.219.8.
I previously had the domains hosted on HostGator at a different IP address. Both domains are currently resolving to the first virtual host. Occasionally though, the repthis.info is still served from HostGator (the index page at the new server for repthis.info will say 'it works!'). What am I doing wrong?
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin dylan@psu.edu
DocumentRoot /var/www/root/dylanstestserver.com
ServerName dylanstestserver.com
ServerAlias www.dylanstestserver.com
ErrorLog logs/dylanstestserver.com-error-log
CustomLog logs/dylanstestserver.com-access_log common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin dylan@psu.edu
DocumentRoot /var/www/root/repthis.info
ServerName repthis.info
ServerAlias www.repthis.info
ErrorLog logs/repthis.info-error-log
CustomLog logs/repthis.info-access_log common
</VirtualHost>