0dd49afddf30e6ece1618de0083d95bf35c482ea
[sysconfig/apache2.git] / mods-available / reqtimeout.conf
1 <IfModule reqtimeout_module>
2
3 # Wait max 10 seconds for the first byte of the request line+headers
4 # From then, require a minimum data rate of 500 bytes/s, but don't
5 # wait longer than 20 seconds in total.
6 RequestReadTimeout header=10-20,minrate=500
7
8 # Wait max 10 seconds for the first byte of the request body (if any)
9 # From then, require a minimum data rate of 500 byte/s.
10 RequestReadTimeout body=10,minrate=500
11
12 </IfModule>