Wildfly / Undertow:一台主机的多个别名
Posted
技术标签:
【中文标题】Wildfly / Undertow:一台主机的多个别名【英文标题】:Wildfly / Undertow : Multiple aliases for one host 【发布时间】:2014-09-19 19:51:18 【问题描述】:在 standalone/configuration/standalone-full.xml 中,我声明了以下主机,它工作
<host name="webhost" alias="gateway.example.com" />
当我尝试添加另一个别名时,我收到了错误 404。
<host name="webhost" alias="gateway.example.com www.gateway.example.com"/>
DOCUMENTATION 表示别名列表以空格分隔。
【问题讨论】:
【参考方案1】:文档中存在错误。它是逗号分隔的主机列表,不是空格分隔的。
例如
<host name="default-host" alias="localhost, some.host" >
我还修复了文档来解决这个问题
【讨论】:
编辑了standalone-full.xml,它就像一个魅力。我感谢您的帮助。谢谢。以上是关于Wildfly / Undertow:一台主机的多个别名的主要内容,如果未能解决你的问题,请参考以下文章