我开发了一个结构类似于
的EAR应用程序abc.ear
我想将其作为网站推出。如何在Wildfly-8.2.1中配置域名。 ?
IP到域名映射已经完成,我可以使用
访问该应用程序http://<some-domain-name>:8080/HelloWorld/
但我想通过仅输入域名来访问该网站。 即。
http://<some-domain-name>
非常感谢任何帮助。提前谢谢。
答案 0 :(得分:2)
This describes how to change the context root(域名后面的路径)。
只需在jboss-web.xml中设置<context-root>/</context-root>
。
您还希望将端口更改为80,这是http的默认值。为此,您必须更改公共接口的套接字绑定。您可以参考this documentation了解更多信息。
在&lt; server&gt; .xml中,您应找到
<socket-binding-group name="standard-sockets" default-interface="public">
标记。更改包含的<socket-binding name="http" port="8080"/>
以定义端口80而不是8080。