~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to docs/conf/extra/httpd-userdir.conf.in

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Settings for user home directories
 
2
#
 
3
# Required module: mod_userdir
 
4
 
 
5
#
 
6
# UserDir: The name of the directory that is appended onto a user's home
 
7
# directory if a ~user request is received.  Note that you must also set
 
8
# the default access control for these directories, as in the example below.
 
9
#
 
10
UserDir public_html
 
11
 
 
12
#
 
13
# Control access to UserDir directories.  The following is an example
 
14
# for a site where these directories are restricted to read-only.
 
15
#
 
16
<Directory /home/*/public_html>
 
17
    AllowOverride FileInfo AuthConfig Limit Indexes
 
18
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
 
19
    <Limit GET POST OPTIONS>
 
20
        Order allow,deny
 
21
        Allow from all
 
22
    </Limit>
 
23
    <LimitExcept GET POST OPTIONS>
 
24
        Order deny,allow
 
25
        Deny from all
 
26
    </LimitExcept>
 
27
</Directory>
 
28