fix links to online docs in template config files
[lighttpd.git] / doc / config / conf.d / userdir.conf
blobe7b4dfa29290de651a1d20e549bfc5d3f5dc4efb
1 #######################################################################
2 ##
3 ##  Userdir Module 
4 ## ----------------
5 ##
6 ## See http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModUserDir
7 ##
8 server.modules += ( "mod_userdir" )
11 ## usually it should be set to "public_html" to take ~/public_html/ as
12 ## the document root
13 ## Default: empty (document root is the home directory)
15 userdir.path = "public_html"
18 ## If set, don't check /etc/passwd for homedir
19 ## Default: empty
20 #userdir.basepath = server_root + "/users/"
23 ## list of usernames which may not use this feature
24 ## Default: empty (all users may use it)
26 #userdir.exclude-user = ( "root", "postmaster" )
29 ## if set, only users from this list may use the feature
30 ## Default: empty (all users may use it) 
32 #userdir.include-user = ("user1", "user2")
35 #######################################################################