# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_winnt_module>
ThreadsPerChild 1024
MaxRequestsPerChild 0
AcceptFilter http None
AcceptFilter https None
</IfModule>
#fix Apache winnt_accept: Asynchronous AcceptEx failed
<IfModule mpm_winnt.c>
ThreadsPerChild 150
MaxRequestsPerChild 10000
AcceptFilter http None
AcceptFilter https None
</IfModule>
时间: 2024-11-10 07:28:10