Apache:使用 SVNParentPath 时允许目录浏览吗?

Apache:使用 SVNParentPath 时允许目录浏览吗?

我有以下设置:

<Location /repos>
  DAV svn
  SVNParentPath /home/svn/repos
  AuthType Basic
  AuthName "SVN"
  AuthUserFile /home/svn/.htpasswd
  Order deny,allow
  Require valid-user
</Location>

用户可以像这样访问他们的 svn 存储库:

http://theserver/repos/therepository

如果您尝试在浏览器中访问以下地址...

http://theserver/repos

您收到 403 Forbidden。我希望用户可以浏览该文件夹并查看存储库。

我认为添加以下内容

<Directory /home/svn/repos>
  Options +FollowSymlinks +Indexes
  AllowOverride all
</Directory>

可以这样做,但我仍然收到 403 Forbidden...

有什么想法吗?

答案1

设置SVNListParentPathOn并重试。

相关内容