Hi,
I'd like to use mod_vhost_alias for ease of site setup in Apache2.2. So I'd have my virtual host setup something like this:
<VirtualHost *:80>
VirtualDocumentRoot "/var/www/%0"
</VirtualHost>
What I'd also like to do on a per site basis, is to include an extra config file - something like this:
<VirtualHost *:80>
VirtualDocumentRoot "/var/www/%0"
Include "/var/www/%0/http.conf"
</VirtualHost>
But Apache doesn't seem to like this. Is there any other way of achieving this?
Thanks,
James.