[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PROPOSAL] AuthzSVNAccessFile for normal web-files

From: Peter MÜNSTER <pm_at_deltadore.com>
Date: 2006-05-10 13:10:48 CEST

Hello,

what do you think about the following feature request:

I have one <Location /svn> for the repository with path based access
control (AuthzSVNAccessFile), and I would like to have some other
<Location /docs> with a normal directory structure (no svn repository)
using the same AuthzSVNAccessFile.

2 usage examples:

- TeX-files are in the repository and at each commit transformed to PDF,
  that is copied to the /docs directory with the same sub-path as the
  TeX-source in the repository. With the same access control only users who
  can read the TeX file will be able to read the PDF.

- The same for documentation generated from C-source (Doxygen).

The Apache configuration could perhaps look like this:
<Location /svn>
  DAV svn
  SVNPath /srv/svn
  AuthType Basic
  AuthName TEST1
  AuthLDAPURL "ldap://localhost/ou=people, o=Delta Dore, c=FR"
  AuthzSVNAccessFile /srv/svn/access
  require valid-user
</Location>

<Location /docs>
  Path /srv/svn-docs
  AuthType Basic
  AuthName TEST2
  AuthLDAPURL "ldap://localhost/ou=people, o=Delta Dore, c=FR"
  AuthzSVNAccessFile /srv/svn/access
  require valid-user
</Location>

Without this feature, I have to create a lot of <Location> blocs and
restart Apache at every modification of the access file.

Cheers, Peter

-- 
http://pmrb.free.fr/contact-DD/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed May 10 13:25:44 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.