This is a discussion on Pb with Cache Apache within the Windows Web Servers forums, part of the Web Server and Related Forums category; English version : Hello, I would like to understand why my Apache doesn't want to cache anything... I use mod_proxy ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
English version :
Hello, I would like to understand why my Apache doesn't want to cache anything... I use mod_proxy and mod_http_proxy (Apache is a proxy web server for a zope web server on another machine) and rewrite rules but now I don't succeed in the way to activate a cache on frontal apache server even if I write in my httpd.conf : ------ Version française : Bonjour, J'aimerais comprendre pourquoi Apache ne veut rien mettre en cache... J'utilise le mod_proxy et le mod_http_proxy (Apache est utilisé en serveur frontal pour un serveur Zope placé sur une autre machine) ainsi que des règles de réécriture. Jusqu'à présent, mes tentatives pour activer le cache sur le serveur frontal apache n'ont rien donné même en écrivant dans mon fichier httpd.conf : ------ 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 c:/cacheroot CacheSize 100000 CacheMaxFileSize 10000000 CacheEnable disk / CacheDirLevels 5 CacheDirLength 3 CacheIgnoreCacheControl On </IfModule> LoadModule mem_cache_module modules/mod_mem_cache.so <IfModule mod_mem_cache.c> CacheEnable mem / MCacheSize 409600 MCacheMaxObjectCount 10000 MCacheMinObjectSize 1 MCacheMaxObjectSize 2048000 CacheIgnoreCacheControl On CacheMaxFileSize 10000000 </IfModule> </IfModule> Any Idea ? Nothing is writing in c:\cacheroot ... Nicolas |