telnet 192.168.1.100 443
Trying 192.168.1.100 ...
Connected to aaa.abc.com ( 192.168.1.100).
Escape character is '^]'.
# uname -a
Linux rpcs2 2.6.18-238.el5 #1 SMP Sun Dec 19 14:22:44 EST 2010 x86_64 x86_64 x86_64 GNU/Linux
# cat /etc/issue
Red Hat Enterprise Linux Server release 5.6 (Tikanga)
Kernel \r on an \m
# cat httpd-default.conf
Timeout 5
KeepAlive Off
MaxKeepAliveRequests 1000
KeepAliveTimeout 5
<IfModule reqtimeout_module>
# Wait max 10 seconds for the first byte of the request line+headers
# From then, require a minimum data rate of 500 bytes/s, but don't
# wait longer than 20 seconds in total.
RequestReadTimeout header=10-20,minrate=500
# Wait max 10 seconds for the first byte of the request body (if any)
# From then, require a minimum data rate of 500 byte/s.
RequestReadTimeout body=5,minrate=500
</IfModule>
<IfModule reqtimeout_module>
# Wait max 10 seconds for the first byte of the request line+headers
# From then, require a minimum data rate of 500 bytes/s, but don't
# wait longer than 20 seconds in total.
RequestReadTimeout header=10-20,minrate=500
# Wait max 10 seconds for the first byte of the request body (if any)
# From then, require a minimum data rate of 500 byte/s.
RequestReadTimeout body=5,minrate=500
</IfModule>
일부분을 아래처럼 바꾸고
RequestReadTimeout header=5-20,minrate=500
시험하니 원하시는 대로 잘 도는데요.
(telnet localhost 8090) 하고 5초후에
"Connection closed by foreign host" 라고 떨어집니다.
직접해보시니 좀 달랐던가요?
2012/1/20 SeungBum Kim <pic...@gmail.com>: