Add maxConnections, and clean up the http threadpool configuration.
This commit is contained in:
parent
ecc4c0a395
commit
4404724edb
|
|
@ -59,8 +59,8 @@
|
||||||
<!-- A http "Connector" using the shared thread pool-->
|
<!-- A http "Connector" using the shared thread pool-->
|
||||||
<Connector executor="tomcatThreadPool"
|
<Connector executor="tomcatThreadPool"
|
||||||
enableLookups="false"
|
enableLookups="false"
|
||||||
maxQueueSize="{{ item.max_queue_size | default(32767) }}"
|
maxConnections="{{ item.max_connections | default(32767) }}"
|
||||||
maxThreads="{{ item.max_threads }}" connectionTimeout="60000"
|
connectionTimeout="60000"
|
||||||
URIEncoding="UTF-8"
|
URIEncoding="UTF-8"
|
||||||
bindOnInit="false" address="{{ item.http_address }}"
|
bindOnInit="false" address="{{ item.http_address }}"
|
||||||
port="{{ item.http_port }}" protocol="HTTP/1.1"
|
port="{{ item.http_port }}" protocol="HTTP/1.1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue