Add maxConnections, and clean up the http threadpool configuration.

This commit is contained in:
Andrea Dell'Amico 2025-05-14 15:50:48 +02:00
parent ecc4c0a395
commit 4404724edb
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 2 deletions

View File

@ -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"