mod-dav-svn

tortoise svn giving me “Redirect cycle detected for URL 'domain/svn'”

↘锁芯ラ 提交于 2019-11-27 14:23:48
I want to achieve a svn-root in /var/svn and repositories(projects) in there. I could get it to work in the browser ( http://domain/url gives me "Collection of repositories") but the TortoiseClient is giving me the error mentioned in the title. I set up a subversion on my ubuntu server by doing the following (shortened): mkdir /var/svn svnadmin create /var/svn/test and my dav_svn.conf looks the following: <Location /svn> DAV svn SVNParentPath /var/svn SVNListParentPath On </Location> I read about sym links possibly causing the problem, so I'll attach my 000-default site as well (it's the

How do I list all repositories with the SVNParentPath directive on Apache+SVN?

北城余情 提交于 2019-11-27 03:51:37
问题 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

tortoise svn giving me “Redirect cycle detected for URL 'domain/svn'”

余生长醉 提交于 2019-11-26 18:24:27
问题 I want to achieve a svn-root in /var/svn and repositories(projects) in there. I could get it to work in the browser (http://domain/url gives me "Collection of repositories") but the TortoiseClient is giving me the error mentioned in the title. I set up a subversion on my ubuntu server by doing the following (shortened): mkdir /var/svn svnadmin create /var/svn/test and my dav_svn.conf looks the following: <Location /svn> DAV svn SVNParentPath /var/svn SVNListParentPath On </Location> I read