Skip to content

Commit

Permalink
Merge branch 'jm/instaweb-apache-24'
Browse files Browse the repository at this point in the history
* jm/instaweb-apache-24:
  git-instaweb: add support for Apache 2.4
  • Loading branch information
Junio C Hamano committed Jun 16, 2014
2 parents 474df92 + f8ee1f0 commit bf2941b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion git-instaweb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -345,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
Expand Down

0 comments on commit bf2941b

Please sign in to comment.