svn - Install Subversion on Ubuntu with NGINX, not Apache -
i'm using ubuntu 10.10 , install subversion. don't need http access files , use ssh. majority of examples i've seen on how install subversion use apache. don't want install apache on sever since i'm using nginx. can install subversion without installing apache? if yes, how? thank you!
if don't need http access subversion repository, need install subversion , create repository this:
svnadmin create /path/to/repository
then can check out local copies directly:
svn co /path/to/repository /path/to/my/checkout
or on ssh:
svn co svn+ssh://server/path/to/repository
if packaging system trying install apache subversion, packaging issue. in ubuntu, subversion package not require apache. requirements are:
depends: libsvn1 (= 1.6.12dfsg-1ubuntu1), libapr1 (>= 1.2.7), libc6 (>= 2.4), libsasl2-2 suggests: subversion-tools, db4.8-util, patch
Comments
Post a Comment