I'm trying to set up my apache server as virtual hosting. I have for the moment two domains:
www.zeti.net and
www.kendersoftware.com. The code of my Vhosts.conf is:
################################ ZETI.NET
<VirtualHost *:*>
DocumentRoot /home/zeti
ServerName
www.zeti.net
<Directory "/home/zeti">
allow from all
Options +Indexes
</Directory>
VirtualDocumentRoot /home/zeti
VirtualScriptAlias /home/zeti/cgi-bin
UserDir
www.zeti.net
</VirtualHost>
################################ KENDERSOFTWARE.COM
<VirtualHost *:*>
DocumentRoot /home/kendersoftware
ServerName
www.kendersoftware.com
<Directory "/home/kender">
allow from all
Options +Indexes
</Directory>
VirtualDocumentRoot /home/kender
VirtualScriptAlias /home/kender/cgi-bin
UserDir
www.kendersoftware.com
ServerPath /home/kender
</VirtualHost>
The problem is that both adresses point to
www.zeti.net root directory and i don't know what to do. Thanks for the help.
Pedro