]> git.pld-linux.org Git - packages/apache.git/commitdiff
- mod_disk_cache renamed to mod_cache_disk
authorAdam Gołębiowski <adamg@pld-linux.org>
Sun, 26 Feb 2012 09:25:14 +0000 (09:25 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- mod_mem_cache removed in 2.3.0

Changed files:
    apache-mod_cache.conf -> 1.7

apache-mod_cache.conf

index 9718fd6dd933d2055ba0734f61a884f1f3abae9b..2c7659aa752d3ba05067873a37f07671bb2e5b48 100644 (file)
@@ -5,15 +5,12 @@ LoadModule cache_module       modules/mod_cache.so
 #
 
 <IfModule mod_cache.c>
-       # If you want to use mod_disk_cache instead of mod_mem_cache,
-       # just swap the two loadmodule comments.
-#      LoadModule disk_cache_module modules/mod_disk_cache.so
-       LoadModule mem_cache_module modules/mod_mem_cache.so
+       LoadModule cache_disk_module modules/mod_cache_disk.so
 
        # prevent apache from cacheing cookies
        CacheIgnoreHeaders Set-Cookie
 
-       <IfModule mod_disk_cache.c>
+       <IfModule mod_cache_disk.c>
                CacheRoot "/var/cache/httpd"
                CacheEnable disk /
                CacheDirLevels 5
@@ -25,14 +22,6 @@ LoadModule cache_module      modules/mod_cache.so
 #              CacheMaxFileSize 64000
        </IfModule>
 
-       <IfModule mod_mem_cache.c>
-               CacheEnable mem /
-               MCacheSize 4096
-               MCacheMaxObjectCount 100
-               MCacheMinObjectSize 1
-               MCacheMaxObjectSize 2048
-       </IfModule>
-
        # When acting as a proxy, don't cache the list of security updates
 #      CacheDisable http://security.update.server/update-list/
 </IfModule>
This page took 0.292556 seconds and 4 git commands to generate.