]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd-mod_userdir.conf
- do not load internally loaded modules twice, fixes mod_expires module; rel 5
[packages/lighttpd.git] / lighttpd-mod_userdir.conf
index 4fcd998fb14200a41ed1caf6969011b3d38e778f..89ac3e73ce8ec4d9bbbc5cb0711b54bfb699fe76 100644 (file)
@@ -1,10 +1,15 @@
+# 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" )
This page took 0.035334 seconds and 4 git commands to generate.