Merge branch 'jm/instaweb-apache-24' into maint
* jm/instaweb-apache-24: git-instaweb: add support for Apache 2.4
This commit is contained in:
commit
af3e5d1b2a
@ -345,7 +345,17 @@ PidFile "$fqgitdir/pid"
|
|||||||
Listen $bind$port
|
Listen $bind$port
|
||||||
EOF
|
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
|
do
|
||||||
if test -e $module_path/mod_${mod}.so
|
if test -e $module_path/mod_${mod}.so
|
||||||
then
|
then
|
||||||
|
Loading…
Reference in New Issue
Block a user