Tomcat绑定域名

server.xml
1. 修改Engine标签的defaultHost属性为需要绑定的域名
2. 在Engine标签内新增Host子标签,name为绑定域名
<Engine name="Catalina" defaultHost="ext.test.cn">
  <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/>
  <Host name="localhost"  appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
  </Host>
  <Host name="ext.test.cn"  appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
  </Host>
</Engine>

你可能感兴趣的:(java,tomcat,xml)