cd /var/www/html wget http://websvn.tigris.org/files/documents/1380/49057/websvn-2.3.3.zip
2 – 解压zip包。
1 2 3
unzip websvn-2.3.3.zip mv websvn-2.3.3 websvn
3 – 安装php到你的系统。
1 2
yum install php
4 – 编辑web svn配置。
1 2 3 4
cd /var/www/html/websvn/include cp distconfig.phpconfig.php vi config.php
1 2 3 4 5
// Configure these lines if your commands aren't on your path. // $config->setSVNCommandPath('/usr/bin'); // e.g. c:\\program files\\subversion\\bin $config->setDiffPath('/usr/bin');
1 2 3 4
// For syntax colouring, if option enabled... $config->setEnscriptPath('/usr/bin'); $config->setSedPath('/bin');
1 2 3
// For delivered tarballs, if option enabled... $config->setTarPath('/bin');
1 2 3
// For delivered GZIP'd files and tarballs, if option enabled... $config->setGZipPath('/bin');