I was having some trouble in configuring virtual hosts in Apache 2.2.3 CentOS, I have the following configuration:
httpd.conf
NameVirtualHost mydomain.site.ch
<VirtualHost mydomain.site.ch>
ServerName mydomain.site.ch
DocumentRoot /home/django_www/hello
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /var/www/html
</VirtualHost>
/etc/hosts
127.0.0.1 localhost.localdomain localhost
x.y.z.89 mydomain.site.ch
I need to match all the requests that comes to this server with the second VirtualHost entry except the one coming with this domain name "mydomain.site.ch" . But the result: with this configuration i get all the requests handled by the first VirtualHost entry.. (the configuration syntax is OK!) Any ideas in how to correct this problem?