Hi
Currently all my web applications are listening on the same port set in default/deploy/jbossweb-tomcat55.sar/server.xml (jboss 4)
For security reasons I have to provide separate port for each web application(now just adding a few new Connectors to server.xml so each one of web apps will be accessible on )
This is my Connector in a server.xml right now:
<Connector port="8080" address="${jboss.bind.address}"
maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
emptySessionPath="true"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"/>
Thanks
Hi,
the easiest way would be to setup an other JBoss running on different ports. An other possibility would be putting an Apache proxy and using virtual hosts (based on your ports) with Mod_JK.
Best regards,
Mark