When I access the following URL on my machine https://svnserver:80/svn/web/domain.com I get the error:

<D:error>
  <C:error/>
  <m:human-readable errcode="2">
    Could not open the requested SVN filesystem
  </m:human-readable>
</D:error>

The exact name of my respository is domain.com, I have https up and running, so any ideas why I can't access the repository?

My dav_svn.conf:

  <Location /svn/web>
        DAV svn
        SVNPath /var/svn-repos/web
  </Location>
  SVNParentPath /var/svn-repos/

My dav_svn.conf SHOULD BE:

  <Location /svn/web>
        DAV svn
        SVNParentPath /var/svn-repos/web
  </Location>
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

HTTPS uses port 443 not 80.

Try https://example.com/svn/web/domain.com

link|improve this answer
When I use 443, I get the error I describe here: serverfault.com/questions/127386/… – Webnet Mar 29 '10 at 19:08
feedback

The issue for me was that SVNParentPath belongs within Location instead of SVNPath....

The docs within the dav_svn.conf file do not clearly show this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.