My server is running Apache2 and the configuration contains several NameVirtualHost settings.
# Example
NameVirtualHost aaa.bbb.ccc.ddd:80
NameVirtualHost xxx.yyy.zzz.qqq:80
NameVirtualHost [aaaa:ssss:dddd:ffff:gggg:hhhh]:80
There are Listen settings for all of them.
At this moment in time I am keeping track of two or more <VirtualHost foo:80>
for each site because I want to be able to control which sites can be accessed through specific IP addresses. One of the reasons for doing it this way is ownership of the IP addresses the sites are being served on.
Question: Is it possible to create a "bundle" NameVirtualHost which contains more than 1 NameVirtualHost but not all NameVirtualHosts at once? The idea and reason for asking this question is that if I can bundle multiple NameVirtualHosts into one, then I would not have to administer multiple <VirtualHost foo:80>
configuration sets for each site.
Cheers.