summaryrefslogtreecommitdiff
path: root/doc/access.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/access.txt')
-rw-r--r--doc/access.txt41
1 files changed, 0 insertions, 41 deletions
diff --git a/doc/access.txt b/doc/access.txt
deleted file mode 100644
index ad8d6b06..00000000
--- a/doc/access.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-======
-Access
-======
-
-------------------
-Module: mod_access
-------------------
-
-:Author: Allan Wind
-:Date: $Date: 2005-03-28T08:30:05.699628Z $
-:Revision: $Revision: 227 $
-
-:abstract:
- The access module is used to deny access to files with given trailing path names.
-
-.. meta::
- :keywords: lighttpd, trailing path access control
-
-.. contents:: Table of Contents
-
-Description
-===========
-
-The access module is used to deny access to files with given trailing path names.
-
-Options
-=======
-
-url.access-deny
- Denies access to all files with any of given trailing path names.
-
- Default: empty
-
- Example: ::
-
- url.access-deny = ( "~", ".inc")
-
- will deny access to all files ended with a diacritical mark (~) or .inc
- such as example~ or example.inc. A trailing diacritical mark is often
- used by editors for backup files. And the .inc extension is often used
- for include files with code.