expire.conf 600 B

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