Tomcat配置虚拟主机
Posted lvyong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tomcat配置虚拟主机相关的知识,希望对你有一定的参考价值。
<!--代码一-->
<Host name="test1.com" appBase="/Users/tiantian/Documents/JavaSpace/webdemo" unpackWARs="true" autoDeploy="true"> <Context docBase="/Users/tiantian/Documents/JavaSpace/webdemo/webapp" path="" /> </Host>
<!--代码二--> <Host name="test2.com" appBase="/Users/tiantian/Documents/JavaSpace/webdemo2" unpackWARs="true" autoDeploy="true"> <Context docBase="/Users/tiantian/Documents/JavaSpace/webdemo/webapp" path="" /> </Host>
<!--代码三--> <Host name="test3.com" appBase="/Users/tiantian/Documents/JavaSpace/webdemo" unpackWARs="true" autoDeploy="true"> <Context docBase="webapp" path="" /> </Host>
确保Context中的docBase是正确的路径就好了。
host appBase是context docBase的上级目录,但是当docBase中是绝对路径的时候除外
以上是关于Tomcat配置虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章