From: berick Date: Fri, 18 Feb 2011 22:05:03 +0000 (-0500) Subject: immediate cache expiration for html is too aggressive, leading to re-fetches on curre... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=911c7d304b03bb58044a39422a8ee65e1c9bd72c;p=evergreen%2Fequinox.git immediate cache expiration for html is too aggressive, leading to re-fetches on current page w/ chrome; give the browser a few seconds to breathe --- diff --git a/Open-ILS/examples/apache/eg_vhost.conf b/Open-ILS/examples/apache/eg_vhost.conf index 16708161b4..7fb1354fc5 100644 --- a/Open-ILS/examples/apache/eg_vhost.conf +++ b/Open-ILS/examples/apache/eg_vhost.conf @@ -562,9 +562,9 @@ RewriteRule ^/openurl$ ${openurl:%1} [NE,PT] PerlSetVar OILSWebContextLoader "OpenILS::WWW::EGCatLoader" - # Expire the HTML immediately since we're loading dynamic data for each page + # Expire the HTML quickly since we're loading dynamic data for each page ExpiresActive On - ExpiresByType text/html "access plus 0 seconds" + ExpiresByType text/html "access plus 5 seconds"