Can some one tell me how to do I enable LOGIN function for WebSVN for different users but allow the main WebSVN page to be visible showing all the different repos available.
I was tasked to create a SVN for my team, and the following is one of the link i followed which helped me successfully setup my first repos.
http://www.websvn.info/features/
But after installing WebSVN, i can see my repos but any valid user can access all repos.
If my users access the repos directly (http://mydomain.com/repos/repo1) they get access if auth for that repo.
my httpd.conf content: DAV svn SVNParentPath /home/svn2 AuthType Basic AuthName "Subversion repository" AuthUserFile /etc/apache2/passwd AuthzSVNAccessFile /etc/apache2/dav_svn.authz Require valid-user
my authz content: [repos:/] janedoe = r
This question is the closest I have found, but still want main WebSVN page to show all repos and when selecting one to view, prompt for auth on that repo.
