kblurry grep [
https://community.jboss.org/people/kblurry] created the discussion
"set up virtual host on jboss 7 AS"
To view the discussion, visit:
https://community.jboss.org/message/727809#727809
--------------------------------------------------------------
I am trying to bind an alias to run my app instead of the ip address on the server. So I
want to access my app on helloworld.businessname.com:8555/helloworld instead of
172.19.20.xxx:8555/helloworld I added a jboss-web.xml in my project under WEB-INF
<jboss-web>
<virtual-host>helloworld.businessname.com</virtual-host>
</jboss-web>
and i edited the virtual host tag in my standalone.xml
<subsystem xmlns="urn:jboss:domain:web:1.1" native="false"
default-virtual-server="default-host">
<connector name="http" protocol="HTTP/1.1"
scheme="http" socket-binding="http"/>
<connector name="https" protocol="HTTP/1.1"
scheme="https" socket-binding="https" enable-lookups="false"
secure="true">
</connector>
<virtual-server name="default-host"
enable-welcome-root="true">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
<virtual-server name="helloworld.businessname.com"
default-web-module="helloworld">
<alias name="helloworld.businessname.com"/>
</virtual-server>
When I go to helloworld.businessname.com:8555/helloworld it says not found.
I appreciate it.
--------------------------------------------------------------
Reply to this message by going to Community
[
https://community.jboss.org/message/727809#727809]
Start a new discussion in JBoss AS 7 Development at Community
[
https://community.jboss.org/choose-container!input.jspa?contentType=1&...]