diff options
-rw-r--r-- | usr.sbin/httpd/conf/httpd.conf | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.sbin/httpd/conf/httpd.conf b/usr.sbin/httpd/conf/httpd.conf index db9c9f7a7e6..afe86f591cd 100644 --- a/usr.sbin/httpd/conf/httpd.conf +++ b/usr.sbin/httpd/conf/httpd.conf @@ -331,15 +331,18 @@ DocumentRoot "/var/www/htdocs" </Directory> # -# UserDir: The name of the directory which is appended onto a user's home -# directory if a ~user request is received. "disabled" turns this feature -# off. +# UserDir: The directory which is prepended onto a users username, within +# which a users's web pages are looked for if a ~user request is received. +# Relative pathes are relative to the user's home directory. # -# Since httpd will chroot(2) to the serverroot path by default, +# "disabled" turns this feature off. +# +# Since httpd will chroot(2) to the ServerRoot path by default, # you should use # UserDir /var/www/users # and create per user directories in /var/www/users/<username> # + UserDir disabled # |