我有以下设置:
<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
设置SVNListParentPath
为On
并重试。