1####################################################################### 2## 3## Userdir Module 4## ---------------- 5## 6## for all details see: 7## http://www.lighttpd.net/documentation/userdir.html 8## 9server.modules += ( "mod_userdir" ) 10 11## 12## usually it should be set to "public_html" to take ~/public_html/ as 13## the document root 14## Default: empty (document root is the home directory) 15## 16userdir.path = "public_html" 17 18## 19## If set, don't check /etc/passwd for homedir 20## Default: empty 21#userdir.basepath = server_root + "/users/" 22 23## 24## list of usernames which may not use this feature 25## Default: empty (all users may use it) 26## 27#userdir.exclude-user = ( "root", "postmaster" ) 28 29## 30## if set, only users from this list may use the feature 31## Default: empty (all users may use it) 32## 33#userdir.include-user = ("user1", "user2") 34 35## 36####################################################################### 37 38