Sophie

Sophie

distrib > Mageia > 2 > i586 > by-pkgid > a59d99d921b61531305538efcdff3a64 > files > 11

apache-2.2.24-1.1.mga2.src.rpm

<IfModule !mod_cache.c>
    LoadModule cache_module         modules/mod_cache.so
</IfModule>

<IfModule mod_cache.c>

    # CacheEnable - A cache type and partial URL prefix below which caching is enabled
    #CacheEnable disk /         <- requires mod_disk_cache, and is configured from that package
    #CacheEnable mem /manual    <- requires mod_mem_cache, and is configured from that package
    #CacheEnable fd /images     <- requires mod_mem_cache, and is configured from that package

    # CacheDisable - A partial URL prefix below which caching is disabled
    #CacheDisable a-domain.com another-domain.edu joes.garage-sale.com
    CacheDisable /admin

    # CacheMaxExpire - The maximum time in seconds to cache a document
    CacheMaxExpire 86400

    # CacheDefaultExpire - The default time in seconds to cache a document
    CacheDefaultExpire 3600

    # CacheIgnoreNoLastMod - Ignore Responses where there is no Last Modified Header
    CacheIgnoreNoLastMod Off

    # CacheIgnoreCacheControl - Ignore requests from the client for uncached content
    CacheIgnoreCacheControl Off

    # CacheStorePrivate - Ignore 'Cache-Control: private' and store private content
    CacheStorePrivate Off

    # CacheStoreNoStore - Ignore 'Cache-Control: no-store' and store sensitive content
    CacheStoreNoStore Off

    # CacheIgnoreHeaders - A space separated list of headers that should not be stored by the cache
    #CacheIgnoreHeaders Connection Keep-Alive Proxy-Authenticate Proxy-Authorization TE Trailers Transfer-Encoding Upgrade Set-Cookie
    CacheIgnoreHeaders None

    # CacheLastModifiedFactor - The factor used to estimate Expires date from LastModified date
    CacheLastModifiedFactor 0.1

</IfModule>