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