From 911c7d304b03bb58044a39422a8ee65e1c9bd72c 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 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" -- 2.11.0