大约10月前 - 没有评论
在apache的 httpd.conf中 去消掉前边的注释 AddType text/html .shtml AddOutputFilter INCLUDES .shtml AddHandler server-parsed .shtml .html Options Indexes FollowSymLinks Includes AllowOverride None Order allow,deny Allow from all 在Directory里添加 Options Indexes FollowSymLinks Includes 原创文章,转载请注明: 转载自gjw_apparitor 博客 本文链接地址: apache 配置SSI
大约10月前 - 没有评论
ServerLimit 50 apache 进程数上限 ThreadLimit 110 apache 线程数上限 StartServers 5 apache 启动时默认建立的进程数 MaxClients 5000 最大并发数 MinSpareThreads 25 最小线程空闲数 MaxSpareThreads 200 最大线程空闲数 ThreadsPerChild 100 每个进程最多开启的线程 MaxRequestsPerChild 5000 指令用于控制服务器建立新进程和结束旧进程的频率 MaxRequestsPerChild 等于 MaxSpareThreads 或者 等于0 没有限制 最好不要设置为0防止内存溢出把服务拖死。 ServerLimit 大于 MaxClients/ThreadsPerChild ThreadLimit 大于 MaxClients/ServerLimit MaxSpareThreads 大于 ThreadsPerChild 原创文章,转载请注明: 转载自gjw_apparitor 博客 本文链接地址: apache worker模式
大约5月前
更新:
厂商已经发布最新版本的Apache 2.2.20来修复此安全漏洞。请到厂商主站下载最新版本:
http://httpd.apache.org/download.cgi
如果你的apache http server 不是流媒体和在线阅读的服务。个人还是建议 使用mod_headers完全禁止使用Range标头
再apache的配置文件里添加:RequestHeader unset Range