You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Ori Tend <or...@fetchbook.info> on 2003/02/27 15:23:12 UTC

[users@httpd] mod_cache config problem

hi guys,
 
i've installed apache 2.0.44 and --enable-cache=shared.
i assume that mod_cache can work as standalone, without mod_proxy, as a
cache repository for apache. 
is this wrong??? do i have to use mod_proxy?
 
 
in httpd.conf i've included:

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 /usr/local/apache2/cacheroot
                CacheSize 1000000
                CacheEnable disk /
                CacheDirLevels 5
                CacheDirLength 3
                CacheDefaultExpire 86400
        </IfModule>
</IfModule>

yet, nothing is written to the .../cacheroot directory.
 
any help would be appreciated :-)
 
ori.