From 195fe0ed026e99e406c60e3e8392268648c449c5 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Mon, 11 Apr 2005 21:14:28 +0000 Subject: Do .htaccess expiry stuff --- web/latency/Makefile.am | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'web/latency') diff --git a/web/latency/Makefile.am b/web/latency/Makefile.am index e85adf5..a0f5521 100644 --- a/web/latency/Makefile.am +++ b/web/latency/Makefile.am @@ -20,14 +20,20 @@ result/stats.txt: $(ECHOLOT_BASE)/results/thesaurus/index.txt $(ECHOLOT_BASE)/da echo "** Skipping Latency build"; \ fi + echo "ExpiresActive On" > result/.htaccess + echo "ExpiresByType image/png \"modification plus $(LATENCY_AGE) seconds\"" >> result/.htaccess + echo "ExpiresByType text/html \"modification plus $(LATENCY_AGE) seconds\"" >> result/.htaccess + clean: rm -rf result tmp install-data-local: result/stats.txt [ -d $(docdir) ] || mkdir $(docdir) - cp result/*.png $(docdir) - cp result/*.html $(docdir) + cp -a result/*.png $(docdir) + cp -a result/*.html $(docdir) + cp -a result/.htaccess $(docdir) uninstall-local: rm -f $(docdir)/*.png rm -f $(docdir)/*.html + rm -f $(docdir)/.htaccess -- cgit v1.2.3