标签:
1.
standalone.xml中修改:
enable-welcome-root="true" 改为 false
<socket-binding name="http" port="80"/>
2.
在第一个项目中添加jboss-web.xml(和web.xml一个目录)。
<?xml version=‘1.0‘ encoding=‘UTF-8‘ ?>
<jboss-web>
<context-root>/</context-root>
<virtual-host>YouthFortyA</virtual-host>
</jboss-web>
第二个:
<?xml version=‘1.0‘ encoding=‘UTF-8‘ ?>
<jboss-web>
<context-root>/</context-root>
<virtual-host>YouthFortyB</virtual-host>
</jboss-web>
依次...
3.
在standalone.xml文件中含有virtual-server的subsystem标签中添加以下内容:
<virtual-server name="YouthFortyA" default-web-module="x">
<alias name="x.youthforty.com"/>
</virtual-server>
<virtual-server name="YouthFortyB" default-web-module="x">
<alias name="xx.youthforty.com"/>
</virtual-server>
依次...
virtual-server name="YouthFortyA"中的YouthFortyA对应项目中jboss-web.xml的virtual-host。
default-web-module="x"中x为x.war,即项目程序名称,Jboss会通过这个名称映射到对应的项目中去。
alias name="xx.youthforty.com"中的xx.youthforty.com是项目网址。
JBoss7虚拟主机的配置及输入域名直接访问项目(配置多个二级域名)
标签:
原文地址:http://my.oschina.net/u/1046838/blog/489415