Hello,

i am using SVN via mod_dav_svn in apache. The user authentification is 
processed via NTLM. Later wehen the user is authenticated, i would like to have 
a authz file what ensures, that the person is permitted to access the svn 
repository and path. The configuration:
=== 8< ===
<VirtualHost svn-repository.intern.xxxxx.de:1234>
  DocumentRoot /export/home/svn-test/repository
  ServerName svn-repository.intern.xxxxx.de
  <Location /svn>
    AuthName "ZVD-Wiki"
    AuthType NTLM
    NTLMAuth on
    NTLMAuthoritative off
    NTLMDomain xxxxx_xxxxx
    NTLMServer xxxxx-xxxxx
    NTLMBackup xxxxx-xxxxx
    NTLMBasicAuth on
    Require valid-user
    Options +Indexes
    Satisfy Any
    DAV svn
    SVNParentPath /export/home/svn-test/repository
    AuthzSVNAccessFile "/export/home/svn-test/repository/my.authz"
    Order allow,deny
    Allow from all
  </Directory>
</Location>
</VirtualHost>
=== 8< ===
The configuration is working so far. Not working is that the authenticated user 
got no access denied when he wants accessing folders in projects whats not in 
the authz. The truss command also told me that no one access the 
/export/home/svn-test/repository/my.authz file.

I am very thankful for your support.
Thanks
Daniel

Reply via email to