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
source
share