User Tools

Site Tools


mywiki:linux:websvn

This is an old revision of the document!


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

First uninstall failed websvn if already tried

  sudo apt-get remove websvn
  sudo apt-get remove --auto-remove websvn
  sudo apt-get purge websvn
  
  

Install Websvn

  sudo apt-get install websvn
  
  Note: select No 

Manually configure Websvn

  cd /etc/websvn/
  sudo vi config.php and add below lines:
    $config->parentPath('/mnt/data/ppa-data/svn/repos');

Link to apache2 Server

  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
  

Try Websvn

In my setup, it is http://10.64.44.136/websvn

mywiki/linux/websvn.1436931993.txt.gz · Last modified: (external edit)