I'm using named based virtual hosts in Apache2. I have about 20 IPs mainly because of security certificates. For those sites that don't require a cert, I want to run them on one ip address. This box has a common httpd.conf file that lists the sites.
For the sites that have an individual IP address:
<Virtual Host>
000.000.000:80
site directory and so on
</Virtual Host>
For the sites that will be served by a common IP that is not assigned:
<Virtual Host>
*:80
site directory and so on
</Virtual Host>
I receive an Apache message that says the first site utilizing "*:80" will take precedence over the second. I have other servers that use one IP for multiple sites where I don't receive that message. Is it a setting I'm missing?
Thanks
For the sites that have an individual IP address:
<Virtual Host>
000.000.000:80
site directory and so on
</Virtual Host>
For the sites that will be served by a common IP that is not assigned:
<Virtual Host>
*:80
site directory and so on
</Virtual Host>
I receive an Apache message that says the first site utilizing "*:80" will take precedence over the second. I have other servers that use one IP for multiple sites where I don't receive that message. Is it a setting I'm missing?
Thanks