svn 리파지토리를 웹으로 봐야 하는 일이 생겼다. 그래서 리파지토리 뷰를 위해 websvn 을 설치해보았다. 1. WebSVN 다운로드 – http://websvn.tigris.org 2. WebSVN 압축 해제
|
$ tar zxvf websvn-2.3.3.tar.gz $ mv websvn-2.3.3 /var/www $ cd /var/www $ ln -s ./websvn-2.3.3 websvn |
3. config.php 수정
|
$ cd websvn/include $ cp distconfig.php config.php $ vi config.php ... $config->parentPath('/svnrepos'); // svn 프로젝트 폴더 설정 $config->expandTabsBy(4); // tab 간격을 4로 지정 ... |
4. command.php 수정
|
$ vi config.php ... function detectCharacterEncoding($str) { $list = array(/*'ASCII',*/ 'UTF-8', 'ISO-8859-1'); -> $list = array(/*'ASCII',*/ 'UTF-8', 'EUC-KR', 'ISO-8859-1'); // 소스 한글(EUC-KR) ... |
5. 인증은 apache의 기본인증을 사용하기 위해 passwd … Continue reading →