Hi
Current VH config:
<VirtualHost 1.2.3.4:80>
ServerName domain.info
ServerAlias www.domain.info
DocumentRoot /home/doodle/domain_info/public_html
<Directory /home/doodle/domain_info/public_html>
AllowOverride All
Allow from all
</Directory>
#limit MEMORY for children 10M and max
RlimitMem 10485760 10485760
#limit CPU for children 30S max 60S
RlimitCPU 30 60
<IfModule mod_cband.c>
CBandSpeed 4096 10 10
CBandRemoteSpeed 2048 5 5
</IfModule>
CustomLog /var/log/httpd/domain_info-access.log combined
ErrorLog /var/log/httpd/domain_info-error.log
ErrorDocument 404 /mis.htm
<Location /cband-stz>
SetHandler cband-status
</Location>
</VirtualHost>
When I reload httpd, I have next errors in error.log
[Tue Jul 07 19:02:41 2009] [warn] Duplicate command 'CBandSpeed' for domain.info:1
[Tue Jul 07 19:02:41 2009] [warn] Duplicate command 'CBandRemoteSpeed' for domain.info:1
But I have no CBand strings in any config exept this one!
Moreover, if I remove
CBandSpeed 4096 10 10
CBandRemoteSpeed 2048 5 5
from VH config, on status page I see that there are no any CBand limits for this VH.
But if I put
CBandSpeed 4096 10 10
CBandRemoteSpeed 2048 5 5
in VH config, I see very strange on status page:
I can't understand where cband found 10240 as speed limit if I have 4096/2048 and why they have no any connection/rps limits if I have these in my config!
I can't find no any CBand directives in any configs on my server...
Looks stupid.
Could somebody help with this?
Thanks a lot
|