Planning to add a number of projects to my newly installed subversion. Found links below to be very useful:
- Setting Up Subversion for One or Multiple Projects on Linux Journal site.
- Section Adding Projects of book Version Control with Subversion
Planning to add a number of projects to my newly installed subversion. Found links below to be very useful:
Add location directive to the https virtual host in the ssl.conf file.
<location>
DAV svn
SVNPath "C:/svnrepo"
</location>
Restart the Apache server and launch browser to https://www.my-site.com/svn/
Go to Apache's conf directory and run command below to create two user account. Note: the first command has -c option to create the password file.
..\bin\htpasswd -cm svn-auth-file user1
..\bin\htpasswd -m svn-auth-file user2
Edit the ssl.conf file to change the section we just added as below.
<location>
DAV svn
SVNPath "C:/svnrepo"
AuthType Basic
AuthName "Subversion repository"
AuthUserFile "conf/svn-auth-file"
Require valid-user
</location>