What is the Tomcat server.xml JBoss equivalent?

I am running an application that has been deployed to JBoss.

There is only documentation for Tomcat, not for JBoss.

I need to change some connector tag attributes to look like this:

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="100" debug="0" scheme="https" secure="true"
useURIValidationHack="false" disableUploadTimeout="true">
</Connector>

Where can I find the file equivalent to server.xml in JBoss?

thanks

+3
source share
1 answer

jboss (Jboss 4.2.x) : JBoss Tomcat web engine, , (server/default/deploy/jbossweb-tomcat50.sar), JAR. Tomcat , .

+3

Source: https://habr.com/ru/post/1721828/


All Articles