Annotation of embedaddon/lighttpd/doc/config/conf.d/userdir.conf, revision 1.1.1.2
1.1 misho 1: #######################################################################
2: ##
3: ## Userdir Module
4: ## ----------------
5: ##
1.1.1.2 ! misho 6: ## See http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModUserDir
1.1 misho 7: ##
8: server.modules += ( "mod_userdir" )
9:
10: ##
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)
14: ##
15: userdir.path = "public_html"
16:
17: ##
18: ## If set, don't check /etc/passwd for homedir
19: ## Default: empty
20: #userdir.basepath = server_root + "/users/"
21:
22: ##
23: ## list of usernames which may not use this feature
24: ## Default: empty (all users may use it)
25: ##
26: #userdir.exclude-user = ( "root", "postmaster" )
27:
28: ##
29: ## if set, only users from this list may use the feature
30: ## Default: empty (all users may use it)
31: ##
32: #userdir.include-user = ("user1", "user2")
33:
34: ##
35: #######################################################################
36:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>