Backup your SVN repository with SVNSYNC

In this article, I will tell you how to create a backup repository on your PC or your second server. First step: Create a new repository on your PC or your another server svnadmin create backup-repository Second step: Create a hook so as to give the repository the ability to change properties On Linux/Unix-like cat [...]

2 Comments , ,

Installing Subversion on Ubuntu

Assuming that apache is installed! Install packages apt-get install subversion libapache2-svn libapache-mod-dav Enable SSL a2enmod Add “Listen 443″ into httpd.conf if needed. Install SSL apt-get install ssl-cert mkdir /etc/apache2/ssl /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/site-name.crt Adding Basic Authentication: htpasswd2 -c -m /home/path-to/svn/project/.htpasswd username Configure site cp /etc/apache2/sites-available/default /etc/apache2/sites-available/site-name nano /etc/apache2/sites-available/site-name <VirtualHost IP_ADDRESS:443> ServerName hostname DocumentRoot /home/path-to/svn SSLEngine on [...]

0 Comments , , , , ,