6 Replies Latest reply on Aug 8, 2014 7:40 PM by thammoud

    Undertow equivalent properties to jboss-web/server.xml

    thammoud

      Hello,

       

      We are trying to undertow to match our existing JBOSS 4.x web parameters. In particular, connectionTimeout.

       

      For example, today we have:

       

          <Connector port="8080" address="${jboss.bind.address}"   

               maxThreads="250" maxHttpHeaderSize="8192"

               emptySessionPath="true" protocol="HTTP/1.1"

               enableLookups="false" redirectPort="8443" acceptCount="100"

               connectionTimeout="60000" disableUploadTimeout="true" />

       

      to establish a 60 second TTL. How do we do the same in undertow for both the timeouts and number of threads. It looks like the socket is kept alive forever. Thank you.