576df0
diff --git a/modules/cache/cache_util.h b/modules/cache/cache_util.h
576df0
index 6b92151..4c42a8e 100644
576df0
--- a/modules/cache/cache_util.h
576df0
+++ b/modules/cache/cache_util.h
576df0
@@ -195,6 +195,9 @@ typedef struct {
576df0
     unsigned int store_nostore_set:1;
576df0
     unsigned int enable_set:1;
576df0
     unsigned int disable_set:1;
576df0
+    /* treat maxex as hard limit */
576df0
+    unsigned int hardmaxex:1;
576df0
+    unsigned int hardmaxex_set:1;
576df0
 } cache_dir_conf;
576df0
 
576df0
 /* A linked-list of authn providers. */
576df0
diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c
576df0
index 56a09f5..41015b5 100644
576df0
--- a/modules/cache/mod_cache.c
576df0
+++ b/modules/cache/mod_cache.c
576df0
@@ -1455,6 +1455,11 @@ static apr_status_t cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in)
576df0
             exp = date + dconf->defex;
576df0
         }
576df0
     }
576df0
+    /* else, forcibly cap the expiry date if required */
576df0
+    else if (dconf->hardmaxex && (date + dconf->maxex) < exp) {
576df0
+        exp = date + dconf->maxex;
576df0
+    }        
576df0
+
576df0
     info->expire = exp;
576df0
 
576df0
     /* We found a stale entry which wasn't really stale. */
576df0
@@ -1954,7 +1959,9 @@ static void *create_dir_config(apr_pool_t *p, char *dummy)
576df0
 
576df0
     /* array of providers for this URL space */
576df0
     dconf->cacheenable = apr_array_make(p, 10, sizeof(struct cache_enable));
576df0
-
576df0
+    /* flag; treat maxex as hard limit */
576df0
+    dconf->hardmaxex = 0;
576df0
+    dconf->hardmaxex_set = 0;
576df0
     return dconf;
576df0
 }
576df0
 
576df0
@@ -2004,7 +2011,10 @@ static void *merge_dir_config(apr_pool_t *p, void *basev, void *addv) {
576df0
     new->enable_set = add->enable_set || base->enable_set;
576df0
     new->disable = (add->disable_set == 0) ? base->disable : add->disable;
576df0
     new->disable_set = add->disable_set || base->disable_set;
576df0
-
576df0
+    new->hardmaxex = 
576df0
+        (add->hardmaxex_set == 0)
576df0
+        ? base->hardmaxex
576df0
+        : add->hardmaxex;
576df0
     return new;
576df0
 }
576df0
 
576df0
@@ -2332,12 +2342,18 @@ static const char *add_cache_disable(cmd_parms *parms, void *dummy,
576df0
 }
576df0
 
576df0
 static const char *set_cache_maxex(cmd_parms *parms, void *dummy,
576df0
-                                   const char *arg)
576df0
+                                   const char *arg, const char *hard)
576df0
 {
576df0
     cache_dir_conf *dconf = (cache_dir_conf *)dummy;
576df0
 
576df0
     dconf->maxex = (apr_time_t) (atol(arg) * MSEC_ONE_SEC);
576df0
     dconf->maxex_set = 1;
576df0
+    
576df0
+    if (hard && strcasecmp(hard, "hard") == 0) {
576df0
+        dconf->hardmaxex = 1;
576df0
+        dconf->hardmaxex_set = 1;
576df0
+    }
576df0
+
576df0
     return NULL;
576df0
 }
576df0
 
576df0
@@ -2545,7 +2561,7 @@ static const command_rec cache_cmds[] =
576df0
                    "caching is enabled"),
576df0
     AP_INIT_TAKE1("CacheDisable", add_cache_disable, NULL, RSRC_CONF|ACCESS_CONF,
576df0
                   "A partial URL prefix below which caching is disabled"),
576df0
-    AP_INIT_TAKE1("CacheMaxExpire", set_cache_maxex, NULL, RSRC_CONF|ACCESS_CONF,
576df0
+    AP_INIT_TAKE12("CacheMaxExpire", set_cache_maxex, NULL, RSRC_CONF|ACCESS_CONF,
576df0
                   "The maximum time in seconds to cache a document"),
576df0
     AP_INIT_TAKE1("CacheMinExpire", set_cache_minex, NULL, RSRC_CONF|ACCESS_CONF,
576df0
                   "The minimum time in seconds to cache a document"),