The URI does not contain the name of a repository. [403, #190001]

这个原因是因为httpd.conf文件里SVNParentPath

加上这行代码后必须在你的访问URL中访问你的SVN下的具体的库

如果开启父目录显示就不会有这个问题了,即加上SVNListParentPath on
还有意Location /svn/的svn后面有一条斜线。完整的配置如下:
<Location /svn/>
DAV svn
SVNParentPath /home/svn
SVNListParentPath on
AuthType Basic
AuthName "Hello welcome to svn"
AuthUserFile /home/svn/passwd
AuthzSVNAccessFile /home/svn/authz.conf
Require valid-user
</Location>

猜你喜欢

转载自haojinghua.iteye.com/blog/762574