- 论坛徽章:
- 0
|
我是用的red hat中自带的Apache来学习,可以里边有很多地方我不明白的,在网上找到的文档也没有说全,请各位高手帮帮忙,告诉我一个比较全的文档地址,例如里边有几段,语句都差不多,为什么要用这么多次呢?
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
MaxClients 150
MaxRequestsPerChild 1000
</IfModule>
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
<IfModule perchild.c>
NumServers 5
StartThreads 5
MinSpareThreads 5
MaxSpareThreads 10
MaxThreadsPerChild 20
MaxRequestsPerChild 0
</IfModule>
[ 本帖最后由 onnla 于 2007-3-5 11:01 编辑 ] |
|