access.txt 890 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ======
  2. Access
  3. ======
  4. ------------------
  5. Module: mod_access
  6. ------------------
  7. :Author: Allan Wind
  8. :Date: $Date: 2005/01/30 11:34:32 $
  9. :Revision: $Revision: 1.1 $
  10. :abstract:
  11. The access module is used to deny access to files with given trailing path names.
  12. .. meta::
  13. :keywords: lighttpd, trailing path access control
  14. .. contents:: Table of Contents
  15. Description
  16. ===========
  17. The access module is used to deny access to files with given trailing path names.
  18. Options
  19. =======
  20. url.access-deny
  21. Denies access to all files with any of given trailing path names.
  22. Default: empty
  23. Example: ::
  24. url.access-deny = ( "~", ".inc")
  25. will deny access to all files ended with a diacritical mark (~) or .inc
  26. such as example~ or example.inc. A trailing diacritical mark is often
  27. used by editors for backup files. And the .inc extension is often used
  28. for include files with code.