I have a few different domains that point to the same web/folder for their content. I'd like to setup just one <VirtualHost> group for them all. Is it possible?
Example:
<VirtualHost 10.10.10.10>
ServerAdmin webmaster@here.com
ServerName ServerName DocumentRoot /home/here/html
ErrorLog /home/here/logs/error
CustomLog /home/here/logs/access combined
</VirtualHost>
Currently I have a separate group for each hostname.
Example:
<VirtualHost 10.10.10.10>
ServerAdmin webmaster@here.com
ServerName ServerName DocumentRoot /home/here/html
ErrorLog /home/here/logs/error
CustomLog /home/here/logs/access combined
</VirtualHost>
Currently I have a separate group for each hostname.