Subversion //已安装并设置,但无法连接

Subversion //已安装并设置,但无法连接

我的目标是拥有自己的 SVN 服务器。

我安装了Subversion,一切正常。我配置了

<Location /myrepo>
        DAV svn
        SVNParentPath /svn/adlsvn  

        #For any else operations, require an authenticated user.
        # Limit write permission to list of valid users.

        <LimitExcept GET PROPFIND OPTIONS REPORT>
              # Require SSL connection for password protection.
              # SSLRequireSSL

              AuthType Basic
              AuthName "Authorization Realm"
              AuthUserFile /etc/svn-users
              Require valid-user
        </LimitExcept>
</Location>

最后我跑了svn服务器

svnserver -d

但...http://mydomain.com/myrepo显示404,还有Tortoise、SmartSVN等第三说:

Unable to connect to a repository at URL 'http://[email protected]/myrepo'
The OPTIONS request returned invalid XML in the response: XML parse error at line 1: no element found (http://[email protected]/myrepo)

请帮忙...端口问题?安全 ?

相关内容