diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-09-01 18:20:41 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-09-01 18:20:41 +0000 |
commit | 8501ae123a8f4ab8af508172423598b70e63c82f (patch) | |
tree | def2d02686552adc2707a2afafcdad0e0c113a77 /usr.sbin/httpd/conf/httpd.conf | |
parent | eb0faef9d55b6288f963d35bbfba2c355f58485e (diff) |
more appropriate comments about UserDir.
Partitially from Sam Smith.
Diffstat (limited to 'usr.sbin/httpd/conf/httpd.conf')
-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 # |