1####################################################################### 2## 3## Expire Module 4## --------------- 5## 6## See http://www.lighttpd.net/documentation/expire.html 7## 8server.modules += ( "mod_expire" ) 9 10## 11## assignes a expiration to all files below the specified path. The 12## specification of the time is made up of: 13## 14## <access|modification> <number> <years|months|days|hours|minutes|seconds> 15## 16#expire.url = ( 17# "/buggy/" => "access 2 hours", 18# "/images/" => "access plus 1 seconds 2 minutes" 19#) 20 21## 22####################################################################### 23