Performance issue with Lucee, AJP, and IIS

In server.xml you can search for protocol=“AJP/1.3” and add the parameter.

<Service name="Catalina">
    <Connector port="8888" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
    <Connector 
		protocol="AJP/1.3" 
		port="8009" 
		packetSize="65536" 
		secret="xxxx" 
		secretRequired="true" 
		redirectPort="8443" 
		address="::1" 
		maxConnections="10000" 
		MaxThreads="5000" 
	/>

After that you need to restart Lucee and when changing BinCode you need to restart IIS