hi,
Is there a way in apache to have the same subdomain on multiple domains point to the same doc root without having to have a virtualhost directive for each domain.
I am hosting multiple domains on the same server with the same subdomain names - mail.domain1.com & cloud.domain1.com, mail.domain2.com & cloud.domain2.com, mail.domain3.com & cloud.domain3.com etc and want all the mail subdomains to point to /opt/webmail/ and all the cloud subdomains to point to /opt/cloud/. I have tried the below but it doesnt work.
Code:
<VirtualHost *:443>
Servername mail.domain1.com
ServerAlias mail.*
DocumentRoot /opt/webmail
</VirtualHost>
<VirtualHost *:443>
Servername cloud.domain1.com
ServerAlias cloud.*
DocumentRoot /opt/cloud
</VirtualHost>
I would like something that i dont have to touch again even if i add/remove domains - any ideas how i can do this ?
thanks