当前位置:web 服务器 > Apache >>

apache下实现对连接带宽的限制

下载模块:ftp://ftp.cohprog.com/pub/apache/module/1.3.0/mod_bandwidth.c

  官方网址:http://www.cohprog.com/mod_bandwidth.html

  安装方法

  1、APACI 安装

  cp mod_bandwidth.c /path/to/apache/source

  ./configure --add-module=mod_bandwidth.c --permute-module=BEGIN:bandwidth

  2、DSO方式安装

  apxs -c /mod_bandwidth.c -o /path/to/apache/libexec/mod_bandwidth.so

  在httpd.conf加入

  LoadModule bandwidth_module libexec/mod_bandwidth.so

  AddModule mod_bandwidth.c

  建立mod_bandwidth工作目录

  mkdir -p /tmp/apachebw/link

  mkdir -p /tmp/apachebw/master

  chown -R nobody:nobody /tmp/apachebw

  chmod -R 755 /tmp/apachebw

  配置:

  BandWidthModule On

  BandWidthPulse 1000000 单位毫秒

  <Directory /download>

  BandWidth all 2048 单位bytes/sec #该目录下所有文件都按照2048bytes/sec速率传输

  LargeFileLimit 100 1024 #大于100k的文件传输速率按1024bytes/sec

  MaxConnection 1000 #最大同时连接数量

  </Directory>

  好象iis里有这样的功能本文来自:http://www.xiaoyaxiao.com/2093.html
发表您的高见!
Apache
IIS
Nginx
Tomcat
如果你遇到web 服务器难题:
访问www.zzzyk.com 试试
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,