Hi,
I'm not sure if I'm totally off here but is it possible to restrict
access to a subdirectory in a repository? I have started with this:
cat /etc/httpd/conf.d/subversion.conf
<Location /svn>
DAV svn
SVNParentPath /usr/local/svnroot
AuthzSVNAccessFile /etc/httpd/svn/svn-acl-conf
SVNListParentPath on
# Limit write permission to list of valid users.
<LimitExcept GET PROPFIND OPTIONS REPORT>
SSLRequireSSL
AuthType Basic
AuthName "My Realm"
AuthUserFile /etc/httpd/svn/svn-auth-conf
Require valid-user
</LimitExcept>
</Location>
<Location /svn/code/Secure>
<LimitExcept GET PROPFIND OPTIONS REPORT>
SSLRequireSSL
AuthType Basic
AuthName "My Realm"
AuthUserFile /etc/httpd/svn/secure-svn-auth-conf
Require valid-user
</LimitExcept>
</Location>
In the SVN ACL file I haven't found any information on how to add a
deny directive.
thanks,
James
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2411569
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-10-27 03:19:02 CET