Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Add new svn project ====== /*from system log mail Nov 21 2007 */ SVN svn version.cs.vassar.edu access controle === Issue the following commands to create a new project=== <code> svnadmin create /svn/svn-repos/project_NAME chown -R www-data /svn/svn-repos/project_NAME chgrp -R subversion /svn/svn-repos/project_NAME chmod 770 /svn/svn-repos/project_NAME </code> === to allow access via https:=== edit /etc/apache2/authz-access-file under [groups] create a group of users <code> [groups] ... ... NAME = user1, user2, ... userN </code> add project location and group access <code> [project_NAME:/] @GROUPNAME = rw # </code> /* if needed add users to .htaccess-file */ All set.