Setting up your own SVN server PDF Print E-mail
Written by Websmurf   
Tuesday, 09 January 2007

This is something I've been wanting for quite some time now: my own SVN server. This really helps me with developing, so it was time to figure out how to set one up.

Turned out to be quite easy :)

 

Simply install subversion, apache2 and libapache2-svn:

apt-get install subversion
apt-get install apache2
apt-get install libapache2-svn

 Now, create a directory somewhere you want to place the repositories, in my case /home/adam/svn.

Then configure the svn-dav module (config file: /etc/apache2/mods-enabled/dav_svn.conf)

After that, you can create a new repository:

svnadmin create /home/adam/svn/customers 

Make sure to set the correct permissions once the directory has been created.



 
< Prev   Next >