]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-mod_userdir.conf
89ac3e73ce8ec4d9bbbc5cb0711b54bfb699fe76
[packages/lighttpd.git] / lighttpd-mod_userdir.conf
1 # The userdir module provides a simple way to link user-based directories into
2 # the global namespace of the webserver.
3 #
4 # Documentation: http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModUserDir
5
6 server.modules += (
7         "mod_userdir"
8 )
9
10 ## the subdirectory of a user's home dir which should be accessible
11 ## under http://$host/~$user
12 userdir.path         = "public_html"
13
14 ## The users whose home directories should not be accessible
15 userdir.exclude-user = ( "root", "postmaster" )
This page took 0.540309 seconds and 2 git commands to generate.