Apache HTTP Server Version 2.3

Available Languages: en
| Description: | Set timeout and minimum data rate for receiving requests |
|---|---|
| Status: | Experimental |
| Module Identifier: | reqtimeout_module |
| Source File: | mod_reqtimeout.c |
| Compatibility: | Available in Apache 2.3 and later |
ReqTimeout headerinit=10 bodyinit=30
ReqTimeout headerinit=10 headerminrate=500 headermax=30
LimitRequestBody):
ReqTimeout bodyinit=10 bodyminrate=1000
| Description: | Set timeout values for receiving request headers and body from client. |
|---|---|
| Syntax: | ReqTimeout
[headerinit=time
[headerminrate=rate [headermax=time]]]
[bodyinit=time
[bodyminrate=rate [bodymax=time]]]
|
| Default: | Unset; all values 0 |
| Context: | server config, virtual host |
| Status: | Experimental |
| Module: | mod_reqtimeout |
This directive can set various timeouts for receiving the request headers
and the request body from the client. If the client fails to send headers or
body within the configured time, a 408 REQUEST TIME OUT error
is sent.
For SSL virtual hosts, the header timeout values include the time needed to do the SSL handshake.
When an AcceptFilter is in use
(usually the case on Linux and FreeBSD), the socket is not sent to the
server process before at least one byte (or the whole request for
httpready) is received. The header timeout configured with
ReqTimeout is only effective after the server process has
received the socket.
headerinitheaderminrate is not set, the request line and all headers
must be received within this time.headerminrateheadermaxheaderminrate.bodyinitbodyminrate is not set, the complete request body must be
received within this time.bodyminratebodymaxbodyminrateAvailable Languages: en