Hello guys,
>
I have a problem using mod_cache and mod_cband together. I use mod_cband in
order to limit bandwidth for some virtual host I have.
>
CBandSpeed 256 max max
>
After I decided to enhance the performance for all virtual host adding to
apache httpd configuration mod_cache.
>
LoadModule cache_module modules/mod_cache.so
> <IfModule mod_cache.c>
> LoadModule disk_cache_module modules/mod_disk_cache.so
> <IfModule mod_disk_cache.c>
> CacheRoot /tmp/cacheroot
> CacheEnable disk /
> CacheDirLevels 5
> CacheDirLength 3
> CacheDefaultExpire 600
> CacheMinFileSize 128
> </IfModule>
> </IfModule>
>
But after I added mod_cache, it seems mod_cband is overridden.
All requests are server with all available bandwidth.
> Any idea in order to define the order of execution (I suppose first
mod_cache and after mod_cband)?
>
Thanks
Vincenzo D'Amore