HTTPD配置文件MPM(非7.0以上版本)

简介:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
MPM:多处理模块
prefork:预先生成进程,一个请求用一个进程响应
 
worker:启动多个进程,每个进程生成多个线程,一个请求用一个线程响应(线程是进程的子单位)
 
event: 一个进程同时处理多个请求(不生成线程)
 
 
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value  for  MaxClients  for  the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers        8           
#启动的进程的数量
MinSpareServers     5
#最小空闲进程数量
MaxSpareServers    20
#最大空闲进程数量
ServerLimit       256
#为MaxClient指定的上限值,不能超过它
MaxClients        256
#最大客户端数,最多允许的连接数量
MaxRequestsPerChild   4000
#一个进程最多响应的次数
</IfModule>

KeepAlive Off   #是否开启长连接

MaxKeepAliveRequests 100   #长连接的最大请求资源数量

KeepAliveTimeout 15      #超时时间



本文转自 chomperwu 51CTO博客,原文链接:http://blog.51cto.com/chomper/1698298,如需转载请自行联系原作者
相关文章
|
6月前
|
缓存 应用服务中间件 开发工具
Ngnix配置文件nginx.conf的文件结构
Ngnix配置文件nginx.conf的文件结构
|
应用服务中间件 nginx Windows
Windows修改nginx.conf配置文件然后重新加载报错
Windows修改nginx.conf配置文件然后重新加载报错
414 0
|
缓存 负载均衡 前端开发
Nginx配置文件nginx.conf配置详解
今天使用Nginx做了静态资源服务器,发现nginx的配置文件好多学问,也没有积极的去做总结,心想赶紧来到阿里云社区上,将自己总结的东西发布出来,和大家一起学习进步,希望能够帮到大家,有不对的地方希望多多指点,留言我修改一下。
264 0
Nginx配置文件nginx.conf配置详解
|
Apache
apache配置文件解析(httpd.conf)
apache配置文件解析(httpd.conf)
602 0
|
网络安全
httpd服务的配置
httpd服务的配置
314 0
|
机器学习/深度学习 Shell Apache
httpd.conf 配置
# # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions.
1071 0
|
Web App开发 应用服务中间件 PHP
|
应用服务中间件 nginx 前端开发

热门文章

最新文章

下一篇
开通oss服务