We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cfececf + f8ee1f0 commit af3e5d1Copy full SHA for af3e5d1
git-instaweb.sh
@@ -345,7 +345,17 @@ PidFile "$fqgitdir/pid"
345
Listen $bind$port
346
EOF
347
348
- for mod in mime dir env log_config
+ for mod in mpm_event mpm_prefork mpm_worker
349
+ do
350
+ if test -e $module_path/mod_${mod}.so
351
+ then
352
+ echo "LoadModule ${mod}_module " \
353
+ "$module_path/mod_${mod}.so" >> "$conf"
354
+ # only one mpm module permitted
355
+ break
356
+ fi
357
+ done
358
+ for mod in mime dir env log_config authz_core
359
do
360
if test -e $module_path/mod_${mod}.so
361
then
0 commit comments