当我访问我的机器https://svnserver:80/svn/web/domain.com上的以下URL时,我会得到错误:
<D:error>
<C:error/>
<m:human-readable errcode="2">
Could not open the requested SVN filesystem
</m:human-readable>
</D:error>
我的存储库的确切名称是domain.com
,我已经启动并运行了https,所以我知道为什么不能访问存储库吗?
我的dav_svn.conf:
<Location /svn/web>
DAV svn
SVNPath /var/svn-repos/web
</Location>
SVNParentPath /var/svn-repos/
我的dav_svn.conf应该是:
<Location /svn/web>
DAV svn
SVNParentPath /var/svn-repos/web
</Location>
发布于 2010-03-29 19:05:54
HTTPS使用端口443而不是80。
试试https://example.com/svn/web/domain.com
发布于 2010-03-29 19:09:19
对我来说,问题是SVNParentPath属于地理位置而不是SVNPath.
dav_svn.conf文件中的文档没有清楚地显示这一点。
https://serverfault.com/questions/127394
复制相似问题