diff --git a/rhodecode/svn_support/templates/mod-dav-svn.conf.mako b/rhodecode/svn_support/templates/mod-dav-svn.conf.mako new file mode 100644 --- /dev/null +++ b/rhodecode/svn_support/templates/mod-dav-svn.conf.mako @@ -0,0 +1,20 @@ +# This file is auto generated by RhodeCode. It contains the configuration for +# use with mod_dav_svn. + + + DAV svn + SVNParentPath ${parent_path_root} + SVNListParentPath ${'On' if svn_list_parent_path else 'Off'} + Allow from all + Order allow,deny + + +% for repo_group in repo_groups: + + DAV svn + SVNParentPath ${parent_path_root}${repo_group.full_path} + SVNListParentPath ${'On' if svn_list_parent_path else 'Off'} + Allow from all + Order allow,deny + +% endfor