]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd-mod_userdir.conf
update doc urls
[packages/lighttpd.git] / lighttpd-mod_userdir.conf
index 4fcd998fb14200a41ed1caf6969011b3d38e778f..bc0e418c2d1fe2ac5f1cda33d7274c04bf9349e6 100644 (file)
@@ -1,10 +1,18 @@
+# The userdir module provides a simple way to link user-based directories into
+# the global namespace of the webserver.
+#
+# Documentation: http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModUserDir
+
 server.modules += (
        "mod_userdir"
 )
 
-#### userdir module
-#userdir.path = "public_html"
-#userdir.exclude-user = ( "root", "postmaster" )
-#
-## if set, only users from this list may use the feature
-#userdir.include-user = ""
+## the subdirectory of a user's home dir which should be accessible
+## under http://$host/~$user
+userdir.path         = "public_html"
+
+## The users whose home directories should not be accessible
+userdir.exclude-user = ( "root", "postmaster" )
+
+## enable userdir module
+userdir.active = "enable"
This page took 0.034364 seconds and 4 git commands to generate.