Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/svn/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Authentication SVN Repo无需身份验证即可工作_Authentication_Svn_Repository_Svn Repository - Fatal编程技术网

Authentication SVN Repo无需身份验证即可工作

Authentication SVN Repo无需身份验证即可工作,authentication,svn,repository,svn-repository,Authentication,Svn,Repository,Svn Repository,我使用以下方法创建了SVN主机: <Location /svn> DAV svn SVNParentPath /home/xxx/xxx/xxx/xxx/Main_Folder/company-1 AuthType Basic SVNListParentPath On AuthName "Test" <LimitExcept GET PROPFIND OPTIONS REPORT> Requi

我使用以下方法创建了SVN主机:

<Location /svn>
     DAV svn
     SVNParentPath /home/xxx/xxx/xxx/xxx/Main_Folder/company-1
     AuthType Basic
     SVNListParentPath On

     AuthName "Test"

     <LimitExcept GET PROPFIND OPTIONS REPORT>
        Require valid-user
     </LimitExcept>
  </Location>`

DAV svn
SVNParentPath/home/xxx/xxx/xxx/xxx/Main_文件夹/company-1
AuthType Basic
SVNListParentPath打开
AuthName“测试”
需要有效用户
`
尽管我在svnserve.conf中指定了用户权限,但它似乎并没有“接受”,因为我可以访问存储库(见下文),而无需提示输入用户/密码

你能指出我做错了什么吗


谢谢

阅读文档,似乎您使用了错误的配置文件


文件中的配置设置在此特定情况下不起任何作用。您和Apache不处理
svnserve.conf
。此配置文件仅供使用。

我可以进行此设置,以便它询问我SVN的用户名/密码。现在我如何才能让它问我HTTP的用户名/密码?请让我知道。