如何在 Apache+SVN 上使用 SVNParentPath 指令列出所有存储库?
我通过 Apache 使用 SVN 和 dav_svn_module
,如下所示:
<Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
这让我可以
C:/svn_repository/repo1
C:/svn_repository/repo2
C:/svn_repository/repo3
通过这些 URL
https://examples.com/svn/repo1
https://examples.com/svn/repo2
https://examples.com/svn/repo3
访问我的存储库:这些 URL 效果很好。 当我只访问 /svn (没有存储库名称)时,我收到 403/forbidden 响应。 我想看看回购清单。 那可能吗?
I'm using SVN through Apache with dav_svn_module
like this:
<Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
This lets me access my repos:
C:/svn_repository/repo1
C:/svn_repository/repo2
C:/svn_repository/repo3
via these URLs:
https://examples.com/svn/repo1
https://examples.com/svn/repo2
https://examples.com/svn/repo3
Those URLs work great. When I go to just /svn (no repo name), I get a 403/forbidden response. What I'd like to see if a list of repos. Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此行添加到
SVNParentPath 的正下方。 重新启动阿帕奇。
Add this line
right under the SVNParentPath. Restart apache.