I'm having issues. I setup my first vhost for my main domain. And I know it works because I setup a simple html file, in its new directory. But the rest of my vhosts don't work. Firefox says "Server not found." As if the domain was not hosted at all. Here the vhost snippet of my httpd.conf:
Code:
NameVirtualHost *:80
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<VirtualHost *:80>
ServerName fatal-error.ws
ServerAlias www.fatal-error.ws
DocumentRoot /home/vhosts/fatal-error.ws/
</VirtualHost>
<VirtualHost *:80>
ServerName 7prox.info
ServerAlias www.7prox.info
DocumentRoot /home/vhosts/7prox.info/
</VirtualHost>
<VirtualHost *:80>
ServerName lagnet.org
ServerAlias www.lagnet.org
DocumentRoot /home/vhosts/lagnet.org/
</VirtualHost>