Hi,
I have set up an Apache2.2.11 server on a WinXP machine along with Subversion 1.6.1 and SVNService 0.52.
I created a Windows directory C:\Repositories\
inside that directory I put my projects
svnadmin create C:/Repositories/project1 svnadmin create C:/Repositories/project2
I created a password file using apache's htpasswd and put it in C:\etc\svn-auth-file I created an authentication file at C:\etc\svn-authz.conf
In the httpd file I did the following
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
LoadModule ssl_module modules/mod_ssl.so
SSLEngine On
SSLRandomSeed startup builtin SSLRandomSeed connect builtin SSLPassPhraseDialog builtin SSLSessionCache shmcb:logs/ssl_cache SSLSessionCacheTimeout 300 SSLMutex default SSLCertificateFile /usr/local/ssl/certs/svnserver.cert SSLCertificateKeyFile /usr/local/ssl/keys/svnserver.key
DAV svn SVNParentPath C:/Repositories SVNListParentPath On AuthzSVNAccessFile C:/etc/svn-authz.conf Require valid-user AuthType Basic AuthName "Subversion Repositories" #AuthDigestDomain /Repositories/ #AuthDigestProvider file AuthUserFile C:/etc/svn-auth-file SSLRequireSSL
svn-authz.conf
[groups]
team1 = user1
team2 = user2
team3 = user3
team4 = user4
[/] * = r
[project1:] user2 = rw team1 = rw
[/project2] @team4 = rw @team2 = rw
This should mean that anyone who has a username in svn-auth-file should have read access to / and then only team1 and user2 have access to project1. But everyone who has a username can access project1.
Can anyone tell me why this is and how I could fix it?
I have been working on this for several weeks, typing every possible combination into google and I cannot find a fix.
Any help would be grately appreciated.
