Previous Topic: General Server Settings in the server.conf File

Next Topic: Tomcat Tuning Parameters in the server.conf File

HTTP Connection Parameters

#Define the listeners between #HTTP listener and proxy engine.
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.reply_timeout=0
worker.ajp13.retries=2

Note: The values for the connector directives are not contained in quotes. Values for other types of directives are contained in quotes.

The name/value pairs are:

worker.ajp13.port=8009

Specifies the port for the ajp13 connector.

worker.ajp13.host=localhost

Specifies the local ajp13 host as the local host.

Additional tuning parameters can be defined for the connection between the HTTP listener and the proxy engine, including:

worker.ajp13.reply_timeout

Specified the maximum time in milliseconds that can elapse between any two packets received from the proxy engine after which the connection between HTTP

listener and the proxy engine is dropped. A value of zero makes it wait indefinitely, until a response is received.
Default: 0

worker.ajp13.retries

Specifies the maximum number of times that the worker sends a request to the proxy engine in a communication error.

Default: 2