From e7fb8dc64f8bc0878527ba31b5d1a86dd324dd0c Mon Sep 17 00:00:00 2001 From: berick Date: Fri, 18 Feb 2011 17:05:03 -0500 Subject: [PATCH] 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 --- Open-ILS/examples/apache/eg_vhost.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/examples/apache/eg_vhost.conf b/Open-ILS/examples/apache/eg_vhost.conf index cd263bb300..17abcdc3ab 100644 --- a/Open-ILS/examples/apache/eg_vhost.conf +++ b/Open-ILS/examples/apache/eg_vhost.conf @@ -555,9 +555,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" -- 2.11.0