SVN 服务端
如何配置安装SVN服务端,有没有什么好的视频教程,本人会用百度,
所以一些没亲自配置过的,不要乱复制来回复......,我想配置的是个人机的,
配置到
authz 文件中 的配置如下
### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to a
### single user, to a group of users defined in a special [groups]
### section, or to anyone using the '*' wildcard. Each definition can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').
[groups]
# harry_and_sally = harry,sally
manage=admin
user=svn1
# [/foo/bar]
# harry = rw
@manage=rw
@user=r
# [repository:/baz/fuz]
# @harry_and_sally = rw
admin=123
svn1=123456
svnserve.conf 中配置如下
### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository. (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)
### Visit http://subversion.tigris.org/ for more information.
[general]
anon-access = read
auth-access = write
password-db = passwd
authz-db = authz
realm = svnTest
passwd 文件没有配置,
菜鸟初学,请各位高手多多赐教......,下面该怎么做,怎么才能让外部的电脑访问到 代码库的内容....