##// END OF EJS Templates
svn: Add template to generate the apache mod_dav_svn config for all repository groups.
Martin Bornhold -
r558:f9cad2b3 default
parent child Browse files
Show More
@@ -0,0 +1,20 b''
1 # This file is auto generated by RhodeCode. It contains the configuration for
2 # use with mod_dav_svn.
3
4 <Location ${location_root}>
5 DAV svn
6 SVNParentPath ${parent_path_root}
7 SVNListParentPath ${'On' if svn_list_parent_path else 'Off'}
8 Allow from all
9 Order allow,deny
10 </Location>
11
12 % for repo_group in repo_groups:
13 <Location ${location_root}${repo_group.full_path}>
14 DAV svn
15 SVNParentPath ${parent_path_root}${repo_group.full_path}
16 SVNListParentPath ${'On' if svn_list_parent_path else 'Off'}
17 Allow from all
18 Order allow,deny
19 </Location>
20 % endfor
General Comments 0
You need to be logged in to leave comments. Login now