summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/doc/outdated/access.txt
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/doc/outdated/access.txt')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/doc/outdated/access.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/doc/outdated/access.txt b/data/lighttpd/lighttpd-1.4.53/doc/outdated/access.txt
new file mode 100644
index 000000000..042da0137
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/doc/outdated/access.txt
@@ -0,0 +1,41 @@
+======
+Access
+======
+
+------------------
+Module: mod_access
+------------------
+
+:Author: Allan Wind
+:Date: $Date: 2005/01/30 11:34:32 $
+:Revision: $Revision: 1.1 $
+
+: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.