|
Virtual Host Problem using Apache
Hello,
I'm having difficulty configuring my system to handle virtual IP hosts. That is, if I do the following:
NameVirtualHost *
<VirtualHost *>
....
</VirtualHost>
<VirtualHost *>
....
</VirtualHost>
everything works fine. However, if I do this:
NameVirtualHost 62.4.58.22
NameVirtualHost 62.4.58.23
<VirtualHost 62.4.58.22>
....
</VirtualHost>
<VirtualHost 62.4.58.23>
....
</VirtualHost>
OR
<VirtualHost 62.4.58.22>
....
</VirtualHost>
<VirtualHost 62.4.58.23>
....
</VirtualHost>
I'm unable to obtain anything. I recently incorporated changes with the DNS, register.com, to change the IP address of my respective websites to reflect those of the static IP addresses I have purchased from my IP provider. Moreover, I'm running everything on the Apache version that's bundled with Red Hat's Linux.
Any assistance will be greatly appreciated.
Andreas
|