Autres versions

Vous êtes ici : Installer et exploiterInstallationServeur applicatifApache

Configuration mod_cache (optionnel)

Activation mod_cache

Sur Debian :
  • a2enmod cache
    a2enmod cache_disk
  • Sur Redhat : éditer le fichier /etc/httpd/conf/httpd.conf
    LoadModule cache_module modules/mod_cache.so
    LoadModule cache_disk_module modules/mod_cache_disk.so

Configuration

Dans le virtualhost, ajouter la configuration suivante

        CacheRoot "/tmp/a2cache"
        CacheDirLevels 5
        CacheDirLength 3
        
        CacheIgnoreURLSessionIdentifiers jsessionid
        CacheMaxExpire 86400
        CacheDefaultExpire 86400
        CacheIgnoreHeaders Set-Cookie
        
        CacheEnable disk  "/wro/"
        CacheEnable disk  "/jsp/styles/"
        CacheEnable disk  "/jsp/images/"
        CacheEnable disk  "/jsp/scripts/"
        CacheEnable disk  "/images/"

Le cache devra être nettoyé à chaque livraison par la commande

htcacheclean -t -p/tmp/a2-cache

Mis à jour le 26 janvier 2018