Actions
Bug #3022
openSVN support with repositories groups
Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
06.01.2016
Due date:
% Done:
0%
Estimated time:
Sorting:
Commit Number:
Affected Version:
Description
WIP: it seems svn is not supporting repositories groups at the moment.
Will put my findings in this ticket
Updated by Marcin Kuzminski [CTO] almost 9 years ago
The repositories group are not supported nativly by RhodeCode due to how webdav works. A work-around solution is to define multiple paths in the apache configuration based on repositories groups.
example:
<VirtualHost *:8090>
## ... rest of configuration here
<Location />
DAV svn
# Must be explicit path, relative not supported
SVNParentPath /home/ubuntu/repos/
SVNListParentPath On
Allow from all
Order allow,deny
</Location>
## each repository group needs to have a separate entry
<Location /example-group>
DAV svn
# Must be explicit path, relative not supported
SVNParentPath /home/ubuntu/repos/example-group
SVNListParentPath On
Allow from all
Order allow,deny
</Location>
</VirtualHost>
Updated by Marcin Kuzminski [CTO] over 8 years ago
- Private changed from No to Yes
Updated by Marcin Kuzminski [CTO] over 8 years ago
- Private changed from Yes to No
Updated by Marcin Kuzminski [CTO] over 8 years ago
- Related to Task #4082: auto-build SVN apache paths added
Actions