From f18ea2abf405d3a32d3264be3f61f83f49961903 Mon Sep 17 00:00:00 2001 From: Martin Bornhold Date: Fri, 14 Oct 2016 10:04:17 +0200 Subject: [PATCH] svn-support: Add reload command option (svn.proxy.reload_cmd) to ini files. --- configs/development.ini | 3 +++ configs/production.ini | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configs/development.ini b/configs/development.ini index 5d971b84..c36ad39b 100644 --- a/configs/development.ini +++ b/configs/development.ini @@ -576,6 +576,9 @@ svn.proxy.config_file_path = %(here)s/mod_dav_svn.conf ## Used as a prefix to the block in the generated config file. In ## most cases it should be set to `/`. svn.proxy.location_root = / +## Command to reload the mod dav svn configuration on change. +## Example: `/etc/init.d/apache2 reload` +#svn.proxy.reload_cmd = /etc/init.d/apache2 reload ################################ diff --git a/configs/production.ini b/configs/production.ini index b6b4ce0c..db0e11d4 100644 --- a/configs/production.ini +++ b/configs/production.ini @@ -547,6 +547,9 @@ svn.proxy.config_file_path = %(here)s/mod_dav_svn.conf ## Used as a prefix to the block in the generated config file. ## In most cases it should be set to `/`. svn.proxy.location_root = / +## Command to reload the mod dav svn configuration on change. +## Example: `/etc/init.d/apache2 reload` +#svn.proxy.reload_cmd = /etc/init.d/apache2 reload ################################