mirror of
https://gitlab.com/hacklab01/pivilion.git
synced 2025-04-29 08:37:16 +00:00
14 lines
450 B
Plaintext
14 lines
450 B
Plaintext
## 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" )
|