From abdbd80ac4dcc42619ee4ed12c19fb5d71fa2d83 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Tue, 6 Sep 2022 10:53:34 +0300 Subject: Added many configs to .b --- .b/etc/apache2/modules.d/00_mod_userdir.conf | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .b/etc/apache2/modules.d/00_mod_userdir.conf (limited to '.b/etc/apache2/modules.d/00_mod_userdir.conf') diff --git a/.b/etc/apache2/modules.d/00_mod_userdir.conf b/.b/etc/apache2/modules.d/00_mod_userdir.conf new file mode 100644 index 0000000..0087126 --- /dev/null +++ b/.b/etc/apache2/modules.d/00_mod_userdir.conf @@ -0,0 +1,32 @@ +# Settings for user home directories + +# 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 public_html + +# Control access to UserDir directories. The following is an example +# for a site where these directories are restricted to read-only. + + AllowOverride FileInfo AuthConfig Limit Indexes + Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec + + Require all granted + + + Require all denied + + + +# Suexec isn't really required to run cgi-scripts, but it's a really good +# idea if you have multiple users serving websites... + + + Options ExecCGI + SetHandler cgi-script + + + + + +# vim: ts=4 filetype=apache -- cgit v1.2.3