From a2558963ac20f1241cfaee6b020f3563b10c2670 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Wed, 14 Jul 2010 08:22:15 +0000 Subject: [PATCH] Enable caching of static files. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2419 44740490-163a-0410-bde0-09ae8108e29a --- www/module.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/module.php b/www/module.php index 12bf3b5cb..f79c1cbd5 100644 --- a/www/module.php +++ b/www/module.php @@ -164,6 +164,10 @@ try { header('Content-Type: ' . $contentType); header('Content-Length: ' . $contentLength); + header('Cache-Control: public,max-age=86400'); + header('Expires: ' . gmdate('D, j M Y H:i:s \G\M\T', time() + 10*60)); + header('Last-Modified: ' . gmdate('D, j M Y H:i:s \G\M\T', filemtime($path))); + readfile($path); exit(); -- GitLab