You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
450 B
Plaintext
14 lines
450 B
Plaintext
5 years ago
|
## The userdir module provides a simple way to link user-based directories into
|
||
|
## the global namespace of the webserver.
|
||
|
##
|
||
|
# /usr/share/doc/lighttpd/userdir.txt
|
||
|
|
||
|
server.modules += ( "mod_userdir" )
|
||
|
|
||
|
## 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" )
|