validator/httpd/conf httpd.conf,1.27,1.28

Update of /sources/public/validator/httpd/conf
In directory hutz:/tmp/cvs-serv16654/httpd/conf

Modified Files:
	httpd.conf 
Log Message:
Tweaking the cache settings:
- images already have a very long max-age
- adding a default reasonable max-age for interfaces and docs (in sample httpd.conf)
- check and feedback page, handled by the template+cgi, will issue a Cache-Control: no cache (in header.tmpl)



Index: httpd.conf
===================================================================
RCS file: /sources/public/validator/httpd/conf/httpd.conf,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- httpd.conf	20 Oct 2005 06:59:14 -0000	1.27
+++ httpd.conf	24 Oct 2005 12:09:51 -0000	1.28
@@ -26,6 +26,9 @@
 </Directory>
 
 <IfModule mod_headers.c>
+<Directory /usr/local/validator/htdocs/>
+  Header set            Cache-Control "max-age=86400"
+</Directory>
 <Directory /usr/local/validator/htdocs/images/>
   Header set            Cache-Control "max-age=604800"
 </Directory>

Received on Monday, 24 October 2005 12:09:57 UTC