宝塔apache限制流量

给宝塔面板建立的网站限制流量

买了限流的vps后可以安装这模块限制总流量

可以限制日周月还有超流量后跳转的页面


wget http://www.idcbaike.com/soft/mod-cband-0.9.7.5.tar.gz
tar zxvf mod-cband-0.9.7.5.tar.gz
cd mod-cband-0.9.7.5
./configure --with-apxs=/www/server/apache/bin/apxs
vi Makefile
...
#APXS_OPTS=-Wc,-Wall -Wc,-DDST_CLASS=3
修改成下面一样 多一个-lm
APXS_OPTS=-lm -Wc,-Wall -Wc,-DDST_CLASS=3
...
:x
make
make install

CBandLimit 800M # 允许跑的流量   

CBandPeriod 1D # 可以设置的时间 

 CBandExceededURL www.idcbaike.com # 超流量后指向的页面

如果需要web查看实时流量

# apache中配置cband-status(用宝塔安装的路径应该是一样的)

# vi /www/server/apache/conf/extra/httpd-vhosts.conf

添加以下代码

<Location /cband-status>

SetHandler cband-status

</Location>

</VirtualHost>

http://ip/cband-status 可以查看到流量情况

赞(1)
未经允许不得转载:IDC百科 » 宝塔apache限制流量