WebSVN setup in Ubuntu 14.04
Since WEBSVN does not fully compatible with Ubuntu 14.04 yet. So we have to do some trick here
sudo apt-get remove websvn sudo apt-get remove --auto-remove websvn sudo apt-get purge websvn
cd /etc/websvn/ sudo vi config.php and add below line, ie, provide root folder of svn repos:
$config->parentPath('/mnt/data/ppa-data/svn/repos');
cd /etc/websvn/ copy apache.conf websvn_http.conf cd /etc/apache2/sites-available sudo ln -s /etc/websvn/websvn_http.conf . cd /etc/apache2/sites-enabled sudo ln -s ../sites-available/websvn_http.conf . sudo service apache2 reload
In my setup, it is http://10.64.44.136/websvn
If it is installed correctly, it should display all wvn repos.