Enable https for Subversion client

来源:互联网 发布:拳皇mugen软件 编辑:程序博客网 时间:2024/05/16 15:43
Subversion support protocol like:
- For anonymous: http, svn
- For committer: https, svn+ssh

But as default, if you compile subversion client from source code, it only enable http, svn and svn+ssh but https, which often used by open source project such all projects ofwww.apache.org, actually enable https for subversion client is straightforward:

- download source tar from www.tigris.org
$ tar zxvf subversion-1.4.5.tar.gz$ tar zxvf subversion-deps-1.4.5.tar.gz$ cd  subversion-1.4.5$ ./configure --prefix=/local/subversion-1.4.5-ssl --with-ssl$ make$ make install


I did see many articles on this, but those articles are so complex to understand, IMO, enable https is very easy.
原创粉丝点击