diff options
Diffstat (limited to 'git-instaweb.sh')
| -rwxr-xr-x | git-instaweb.sh | 13 | 
1 files changed, 12 insertions, 1 deletions
diff --git a/git-instaweb.sh b/git-instaweb.sh index e93a238675..513efa662e 100755 --- a/git-instaweb.sh +++ b/git-instaweb.sh @@ -5,6 +5,7 @@  PERL='@@PERL@@'  OPTIONS_KEEPDASHDASH= +OPTIONS_STUCKLONG=  OPTIONS_SPEC="\  git instaweb [options] (--start | --stop | --restart)  -- @@ -344,7 +345,17 @@ PidFile "$fqgitdir/pid"  Listen $bind$port  EOF -	for mod in mime dir env log_config +	for mod in mpm_event mpm_prefork mpm_worker +	do +		if test -e $module_path/mod_${mod}.so +		then +			echo "LoadModule ${mod}_module " \ +			     "$module_path/mod_${mod}.so" >> "$conf" +			# only one mpm module permitted +			break +		fi +	done +	for mod in mime dir env log_config authz_core  	do  		if test -e $module_path/mod_${mod}.so  		then  | 
