16 lines
344 B
Plaintext
16 lines
344 B
Plaintext
|
#
|
||
|
# The length of time in seconds to wait for more output
|
||
|
# from a CGI program.
|
||
|
#
|
||
|
# This will prevent a DoS if too many CGI's don't send their output quickly
|
||
|
# enough.
|
||
|
# The value for CGIDScriptTimeout defaults to the value of Timeout.
|
||
|
# CGIDScriptTimeout is used by mod_cgid only!
|
||
|
#
|
||
|
|
||
|
<IfModule mod_cgid.c>
|
||
|
CGIDScriptTimeout 60
|
||
|
</IfModule>
|
||
|
|
||
|
|