summaryrefslogtreecommitdiff
path: root/doc/userdir.txt
diff options
context:
space:
mode:
authorstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2011-06-13 12:55:54 +0000
committerstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2011-06-13 12:55:54 +0000
commit8402b1661aee7e20e5011113e80db37d7249cf52 (patch)
tree576222cfb4c074e7637ce9f7b69f27cc0455d34c /doc/userdir.txt
parentc2bca8905c1de29647a96419df0fa9e823f56818 (diff)
downloadlighttpd-8402b1661aee7e20e5011113e80db37d7249cf52.tar.gz
[doc] Move docs to outdated/ subdir and refer to wiki instead (fixes #2248)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2795 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'doc/userdir.txt')
-rw-r--r--doc/userdir.txt72
1 files changed, 0 insertions, 72 deletions
diff --git a/doc/userdir.txt b/doc/userdir.txt
deleted file mode 100644
index 7a62f06d..00000000
--- a/doc/userdir.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-=======
-userdir
-=======
-
--------------------
-Module: mod_userdir
--------------------
-
-:Author: Jan Kneschke
-:Date: $Date: 2004/08/29 09:43:49 $
-:Revision: $Revision: 1.1 $
-
-:abstract:
- The userdir module ...
-
-.. meta::
- :keywords: lighttpd, userdir
-
-.. contents:: Table of Contents
-
-Description
-===========
-
-The userdir module provides a simple way to link user-based directories into the global namespace of the webserver.
-
-Requests in the form ``/~user/page.html`` are rewritten to take the file ``page.html`` from the home directory of the user.
-If ``userdir.path`` is set, the path will be appended to the home directory
-building the classic mapping of: ::
-
- userdir.path = "public_html"
-
- URL: http://www.example.org/~jan/index.html
- Path: /home/jan/public_html/
-
-To control which users should be able to use this feature you can set a list of usernames to include or exclude.
-
-In case your mapping is independent of /etc/passwd you can use
-``userdir.basepath``: ::
-
- userdir.path = "htdocs"
- userdir.basepath = "/var/www/users/"
-
- URL: http://www.example.org/~jan/index.html
- Path: /var/www/users/jan/htdocs/index.html
-
-Options
-=======
-
-userdir.path (required option)
- usually it should be set to "public_html" to take ~/public_html/ as the document root
-
- Default: unset (mod_userdir disabled; set it to "" if you want the home directory to be the document root as it was the default before 1.4.19)
- Example: ::
-
- userdir.path = "public_html"
-
-userdir.exclude-user
- list of usernames which may not use this feature
-
- Default: empty (all users may use it)
- Example: ::
-
- userdir.exclude-user = ( "root", "postmaster" )
-
-
-userdir.include-user
- if set, only users from this list may use the feature
-
- Default: empty (all users may use it)
-
-userdir.basepath
- if set, don't check /etc/passwd for homedir