diff options
author | Jan Kneschke <jan@kneschke.de> | 2005-10-31 09:06:35 +0000 |
---|---|---|
committer | Jan Kneschke <jan@kneschke.de> | 2005-10-31 09:06:35 +0000 |
commit | 0201f02f9dd4790b36441593fb82f7bf810c16c9 (patch) | |
tree | 82023589d98895fbc900ade17ad2d2ccadc453b4 /doc | |
parent | 13f98b99a4208425174ca5b9ae15369979654270 (diff) | |
download | lighttpd-git-0201f02f9dd4790b36441593fb82f7bf810c16c9.tar.gz |
documented userdir.basepath
git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@804 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'doc')
-rw-r--r-- | doc/userdir.txt | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/doc/userdir.txt b/doc/userdir.txt index e0983fb3..65cc9d03 100644 --- a/doc/userdir.txt +++ b/doc/userdir.txt @@ -24,10 +24,25 @@ 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 at the home-directory. +If ``userdir.path`` is set, the path will be appended at 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 include- or a exclude list for username. +In case you 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 ======= @@ -52,3 +67,6 @@ userdir.include-user if set, only users from this list may use the feature Default: empty (all user may use it) + +userdir.basepath + if set, don't check /etc/passwd for homedir |