I am running an application which was deployed on JBoss.
There is only documentation for Tomcat, none for JBoss.
I need to change some connector tag attributes to look like so:
<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