
To install SVN server, run this command at the command prompt:
sudo apt-get install subversion apache2 libapache2-svn
Verify the installed version of Subversion software:
svn --version
We want to configure the apache in such a way that it’ll run on HTTPs and for this we need to enable ssl Apache2 module with a2enmod:
sudo a2enmod ssl
It will suggest you to restart apache;ignore that message for now.
Create a directory inside the /etc/apache2/...