I wanted to enable role based access with Apache2 and SVN
I have followed following article and find out authentication can be achieves, but now role based access http://svnbook.red-bean.com/en/1.7/svn.serverconfig.httpd.html
But I wanted to protect svn repertories from outside but have 2 different user groups who have read only access and read write access.
I tried to achieve this to a certain extend by defining two different blokes like this but it didn't work for me, also even this works I wont be able to restrict access from public.
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
I can see this can be achieved only with SVN (Without combining with apache) How to setup access control in SVN?
But I want to have it with Apache as well.
What is the best way to achieve this ?