Can we include files in the server.xml file of a tomcat to configure virtual host
问题 I have the following section of the server.xml file in my tomcat. <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log" suffix=".txt" pattern="%h %l %u %t "%r" %s %b" /> </Host> <Host name="mydomain1" appBase="d1" unpackWARs="true" autoDeploy="true"> <Alias>xyz-mydomain1.com</Alias> <Alias>abc.mydomain1.com</Alias> <Valve className="org.apache.catalina.valves