Annotation of embedaddon/lighttpd/doc/outdated/access.txt, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>