aboutsummaryrefslogtreecommitdiff
path: root/usr/pkg/etc/httpd/httpd-userdir.conf
diff options
context:
space:
mode:
Diffstat (limited to 'usr/pkg/etc/httpd/httpd-userdir.conf')
-rw-r--r--usr/pkg/etc/httpd/httpd-userdir.conf21
1 files changed, 21 insertions, 0 deletions
diff --git a/usr/pkg/etc/httpd/httpd-userdir.conf b/usr/pkg/etc/httpd/httpd-userdir.conf
new file mode 100644
index 0000000..704dbe4
--- /dev/null
+++ b/usr/pkg/etc/httpd/httpd-userdir.conf
@@ -0,0 +1,21 @@
+# Settings for user home directories
+#
+# Required module: mod_authz_core, mod_authz_host, mod_userdir
+
+#
+# UserDir: The name of the directory that is appended onto a user's home
+# directory if a ~user request is received. Note that you must also set
+# the default access control for these directories, as in the example below.
+#
+UserDir www
+
+#
+# Control access to UserDir directories. The following is an example
+# for a site where these directories are restricted to read-only.
+#
+<Directory "/home/*/www">
+ AllowOverride FileInfo AuthConfig Limit Indexes
+ Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
+ Require method GET POST OPTIONS
+</Directory>
+