Bug #3022
open
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>
- Private changed from No to Yes
- Private changed from Yes to No
- Related to Task #4082: auto-build SVN apache paths added
Also available in: Atom
PDF