码迷,mamicode.com
首页 > 其他好文 > 详细

apache config 1 Bandwidth Mod (apache speed control)

时间:2014-09-30 20:39:00      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   使用   ar   for   文件   sp   art   

调试网络的时候进行  HTTP模拟网速 快慢  使用apache 插件 Bandwidth Mod 

1.安装mod_bw

下载http://bwmod.sourceforge.net/#

解压

进入目录执行

sudo apxs2 -i -a -c mod_bw.c

2.配置

在配置文件/etc/apache2/httpd.conf 加入如下  

配置为低速模式 1KB/S

<location /modbw>
SetHandler modbw-handler
</location>

<VirtualHost *:80>
DocumentRoot /var/www/
ServerName 127.0.0.1
BandWidthModule On
ForceBandWidthModule On
Bandwidth all 1024
MinBandwidth all -1
</VirtualHost>

配置为高速模式  100KB/S

<location /modbw>
SetHandler modbw-handler
</location>

<VirtualHost *:80>
DocumentRoot /var/www/
ServerName 127.0.0.1
BandWidthModule On
ForceBandWidthModule On
Bandwidth all 1048576
MinBandwidth all -1
</VirtualHost>


3.配置生效

sudo /etc/init.d/apache2 restart

reload 貌似不行,不知道为啥

apache config 1 Bandwidth Mod (apache speed control)

标签:http   io   os   使用   ar   for   文件   sp   art   

原文地址:http://blog.csdn.net/green369258/article/details/39699059

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!