~ubuntu-branches/ubuntu/trusty/subversion/trusty-proposed

« back to all changes in this revision

Viewing changes to subversion/mod_authz_svn/INSTALL

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft
  • Date: 2012-06-21 15:36:36 UTC
  • mfrom: (0.4.13 sid)
  • Revision ID: package-import@ubuntu.com-20120621153636-amqqmuidgwgxz1ly
Tags: 1.7.5-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Create pot file on build.
  - Build a python-subversion-dbg package.
  - Build-depend on python-dbg.
  - Build-depend on default-jre-headless/-jdk.
  - Do not apply java-build patch.
  - debian/rules: Manually create the doxygen output directory, otherwise
    we get weird build failures when running parallel builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
         though AuthzSVNAnonymous was set to 'No'.  The AuthzSVNAnonymous
80
80
         directive prevents the anonymous access check from being run.
81
81
 
 
82
      D. Example 4: Per-repository access file
 
83
 
 
84
         This configuration allows to use SVNParentPath but have
 
85
         different authz files per repository.
 
86
 
 
87
         <Location /svn>
 
88
           DAV svn
 
89
           SVNParentPath /path/to/reposparent
 
90
 
 
91
           AuthType Basic
 
92
           AuthName "Subversion repository"
 
93
           AuthUserFile /path/to/htpasswd/file
 
94
 
 
95
           AuthzSVNReposRelativeAccessFile filename
 
96
 
 
97
           Require valid-user
 
98
         </Location>
 
99
 
 
100
         NOTE: AuthzSVNReposRelativeAccessFile filename causes the authz file
 
101
         to be read from <repo path>/conf/<filename>
82
102
 
83
103
   2. Specifying permissions
84
104