I am coming from this SO however my case is not on Tomcat, but JBoss EAP 6. So suppose I have two web apps app1 and app2 running on JBoss AS 6:
http://localhost:8080/app1
http://localhost:8080/app2
However I want to configure Tomcat so that they run in root context behind separate ports:
http://localhost:8081
http://localhost:8082
How can I make it on JBoss EAP 6? Note this answer doesn't work for me as it targets JBoss 5.
We have to configure the jboss-service. xml to run multiple instances in the same machine. We may need to keep the same "default" instance same as it is under the JBOSS_HOME\Server. We have to create another folder say "instance2" under JBOSS_HOME\Server.
EDIT: These instructions are for JBoss AS6 as requested in the original question. AS7 has different configuration file syntax.
Your problem has two parts:
This one is easy.
Add lines like these to $JBOSS_HOME/server/default/deploy/jbossweb.sar/server.xml
<!-- A HTTP/1.1 Connector on port 8081 -->
<Connector protocol="HTTP/1.1" port="8081" address="${jboss.bind.address}"
redirectPort="${jboss.web.https.port}" />
<!-- A HTTP/1.1 Connector on port 8082 -->
<Connector protocol="HTTP/1.1" port="8082" address="${jboss.bind.address}"
redirectPort="${jboss.web.https.port}" />
Observe the following messages in the log when server boots up:
11:56:23,639 INFO [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8081
11:56:23,640 INFO [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8082
Note: If you want to do it "properly" you should use placeholders instead of hardcoded numbers and edit $JBOSS_HOME/server/default/conf/bindingservice.beans/META-INF/bindings-jboss-beans.xml
to define them. But, unless you need to manage ports via the management UI, it will be an overkill.
This is much harder. JBoss uses its own Tomcat engine that does not support multiple webapp roots (appBase attribute does not work). Thus it is impossible to configure two different directories for your connectors. It is possible to add virtual hosts and use jboss-web.xml
in each app to configure which vhost it responds to, but that means your have to use different names in client URL-s.
You have two options here.
Add this to Host
configuration element (before other valve definitions) in $JBOSS_HOME/server/default/deploy/jbossweb.sar/server.xml
<Valve className="org.jboss.web.rewrite.RewriteValve" />
Create a file $JBOSS_HOME/server/default/conf/jboss.web/localhost/rewrite.properties
with the following contents:
RewriteCond %{SERVER_PORT} =8081
RewriteRule ^/(.*)$ /app1/$1 [L]
RewriteCond %{SERVER_PORT} =8082
RewriteRule ^/(.*)$ /app2/$1 [L]
Note: You may need to create the $JBOSS_HOME/server/default/conf/jboss.web/localhost/
directory, it does not exist by default.
Note2: Location of the rewrite.properties
depends on the placement of the Valve
tag in server.xml
. The most intuitive placement is with other Valve
elements. However it is valid directly under Engine
as well. In this case rewrite.properties
file needs to be moved up one directory.
Deploy a servlet filter to $JBOSS_HOME/server/default/deploy/ROOT.war/
that dispatches requests based on incoming port. You can either roll out your own custom filter implementation or use UrlRewriteFilter with a configuration that looks like this:
<rule>
<condition type="port">8081</condition>
<from>/(.*)</from>
<to context="app1">/$1</to>
</rule>
<rule>
<condition type="port">8082</condition>
<from>/(.*)</from>
<to context="app2">/$1</to>
</rule>
See also:
EDIT: Given the complexity of JBoss configuration you may also opt for an Apache based reverse proxy that sits in front of the app server.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With