Hi,
Currently i have setupped fast-cgi in my IIS 6.0, it works fine:).
But i found a problem, if i continuously refresh the IE window then the php-cgi.exe process will increase too many till 20( This is my MaxInstances setting number in fcgiext.ini ) processes.
I thought if user continuously refresh IE window and the IIS just need one php-cgi.exe to process HTTP request the other request we need to ignore them. Maybe some bad guys can use this for ddos attack.
How can i configure fast-cgi or IIS to ignore continuously HTTP request, we just need to one php-cgi.exe process this situation?
The following is my fcgiext.ini setting.
ExePath=E:\php\php-5.2.5-nts-Win32\php-cgi.exe
Arguments=test
QueueLength=999
MaxInstances=20
IdleTimeout=100
ActivityTimeout=100
RequestTimeout=100
InstanceMaxRequests=10000
EnvironmentVars=PHP_FCGI_MAX_REQUESTS:10000
Can you give advice?
Thanks
Jack.