summaryrefslogtreecommitdiff
path: root/doc/config/conf.d/userdir.conf
blob: 1e3691e1a6710603b67cbe4d9122f16fdd1664a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#######################################################################
##
##  Userdir Module 
## ----------------
##
## for all details see:
##   http://www.lighttpd.net/documentation/userdir.html
##
server.modules += ( "mod_userdir" )

##
## usually it should be set to "public_html" to take ~/public_html/ as
## the document root
## Default: empty (document root is the home directory)
##
userdir.path = "public_html"

##
## If set, don't check /etc/passwd for homedir
## Default: empty
#userdir.basepath = server_root + "/users/"

##
## list of usernames which may not use this feature
## Default: empty (all users may use it)
##
#userdir.exclude-user = ( "root", "postmaster" )

##
## if set, only users from this list may use the feature
## Default: empty (all users may use it) 
##
#userdir.include-user = ("user1", "user2")

##
#######################################################################