mod_cband problem

jerleung

New member
Joined
Jan 24, 2007
Messages
2
Hi All, I am using apache 2.2.3, php 5.1.6, mysql 4.1.11 on CentOS

I have tried the latest mod_cband (0.9.7.5) module to limit the speed of remote connection, everything is fine during installation, however, after restarting apache, I found that that the website, which is a forum, has a number of broken images, this is true to other users of the forum. After disabling mod_band, the images can be shown normally.

Does anyone has similar experience?

Below is part of the settings of httpd.

CBandScoreFlushPeriod 1
CBandRandomPulse On

for the virtual host:
<VirtualHost 1.2.3.4:80>
ServerName www.example.com
ServerAdmin [email protected]
DocumentRoot /var/www
# the above is only a dummy
CBandRemoteSpeed 35 3 2
<Location /cband-status>
SetHandler cband-status
</Location>
<Location /cband-status-me>
SetHandler cband-status-me
</Location>
.
.
.
.
.
</VirtualHost>
 
Back
Top