summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/outdated/expire.txt
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/doc/outdated/expire.txt')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/doc/outdated/expire.txt42
1 files changed, 42 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/doc/outdated/expire.txt b/data/lighttpd/lighttpd-1.4.53/doc/outdated/expire.txt
new file mode 100644
index 000000000..ca59c42a5
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/doc/outdated/expire.txt
@@ -0,0 +1,42 @@
+===============================================
+Controlling the Expiration of Content in Caches
+===============================================
+
+------------------
+Module: mod_expire
+------------------
+
+:Author: Jan Kneschke
+:Date: $Date: 2004/11/03 22:26:05 $
+:Revision: $Revision: 1.2 $
+
+:abstract:
+ mod_expire controls the setting of the the Expire Response header
+
+.. meta::
+ :keywords: lighttpd, expire
+
+.. contents:: Table of Contents
+
+Description
+===========
+
+mod_expire controls the Expire header in the Response Header of HTTP/1.0
+messages. It is usefull to set it for static files which should be cached
+aggressivly like images, stylesheets or similar.
+
+Options
+=======
+
+expire.url
+ assignes a expiration to all files below the specified path. The
+ specification of the time is made up of: ::
+
+ <access|modification> <number> <years|months|days|hours|minutes|seconds>
+
+ following the syntax used by mod_expire in Apache 1.3.x and later.
+
+ Example: ::
+
+ expire.url = ( "/images/" => "access 1 hour" )
+