diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -535,6 +535,24 @@ vcs.connection_timeout = 3600 ## Available options are: pre-1.4-compatible, pre-1.5-compatible, pre-1.6-compatible, pre-1.8-compatible #vcs.svn.compatible_version = pre-1.8-compatible + +############################################## +### Subversion proxy support (mod_dav_svn) ### +############################################## +## Enable or disable the config file generation. +svn.proxy.generate_config = false +## Generate config file with `SVNListParentPath` set to `On`. +svn.proxy.list_parent_path = true +## Set location and file name of generated config file. +svn.proxy.config_file_path = %(here)s/mod_dav_svn.conf +## File system path to the directory containing the repositories served by +## RhodeCode. +svn.proxy.parent_path_root = /path/to/repo_store +## Used as a prefix to the block in the generated config file. In +## most cases it should be set to `/`. +svn.proxy.location_root = / + + ################################ ### LOGGING CONFIGURATION #### ################################ diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -504,6 +504,24 @@ vcs.connection_timeout = 3600 ## Available options are: pre-1.4-compatible, pre-1.5-compatible, pre-1.6-compatible, pre-1.8-compatible #vcs.svn.compatible_version = pre-1.8-compatible + +############################################## +### Subversion proxy support (mod_dav_svn) ### +############################################## +## Enable or disable the config file generation. +svn.proxy.generate_config = false +## Generate config file with `SVNListParentPath` set to `On`. +svn.proxy.list_parent_path = true +## Set location and file name of generated config file. +svn.proxy.config_file_path = %(here)s/mod_dav_svn.conf +## File system path to the directory containing the repositories served by +## RhodeCode. +svn.proxy.parent_path_root = /path/to/repo_store +## Used as a prefix to the block in the generated config file. In +## most cases it should be set to `/`. +svn.proxy.location_root = / + + ################################ ### LOGGING CONFIGURATION #### ################################