summaryrefslogtreecommitdiff
path: root/web/latency
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2005-04-11 21:14:28 +0000
committerPeter Palfrader <peter@palfrader.org>2005-04-11 21:14:28 +0000
commit195fe0ed026e99e406c60e3e8392268648c449c5 (patch)
tree4d934fd4708bd635d007a99429a3bf25421d3c5b /web/latency
parent91e1563d97b6333cceb0f7b8d950eaf2ab117169 (diff)
Do .htaccess expiry stuff
Diffstat (limited to 'web/latency')
-rw-r--r--web/latency/Makefile.am10
1 files changed, 8 insertions, 2 deletions
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