Hey guys, I'm new to this so I need a bit of help. I have a dedicated server that has Apache installed. I read up on using VirtualHosts do make my domain point to my site and I tried them but it's not working at all. I have this in my httpd.conf file: # Virtual hosts Include conf/extra/httpd-vhosts.conf Code (markup): And in the httpd-vhosts.conf file I have this: NameVirtualHost *:80 <VirtualHost *:80> ServerName www.scrubsonline.org ServerAlias scrubsonline.org *.scrubsonline.org DocumentRoot /home/www </VirtualHost> Code (markup): I have set my domain up with the DNS to point to my server, and I know that's not the problem. But when I try and browse to scrubsonline.org I get this error: The connection to the server was reset while the page was loading. Code (markup): As you can see for yourself. I have restarted httpd, and even my whole server but I'm still getting this error. Thanks for any help
Have you tried putting the vhost information directly into httpd.conf instead of the inherited .conf file? Just to see if it helps.