I created a repository on a network drive with svnadmin create repos
.
Is there a way to set user permissions to the repository?
And if that is the case how can those permissions be set?
I created a repository on a network drive with svnadmin create repos
.
Is there a way to set user permissions to the repository?
And if that is the case how can those permissions be set?
If you need to manage access via svn://
protocol (embedded authorization), all you need to do is to change files in conf
folder of your newly created repository:
repos/conf/passwd
) in order to define a list of users and passwordsrepos/conf/authz
) in order to define groups and privilegesrepos/conf/svnserve.conf
) in order to define general access configurationHere is simple guide of how to edit and configure access to your repository. Also you can consult official documentation in order to dive into subversion access management.
In case you need to manage access via http://
protocol, you might like to consult official subversion documentation on this matter, it's a bit more complex topic than embedded subversion authorization.