Skip to content

Commit 757b124

Browse files
skiselagitster
authored andcommitted
git-instaweb: fix apache2 config with apache >= 2.4
The generated apache2 config fails with apache >= 2.4. The error log states: AH00136: Server MUST relinquish startup privileges before accepting connections. Please ensure mod_unixd or other system security module is loaded. AH00016: Configuration Failed Fix this by loading the unixd module. This works with older httpd as well, so no IfVersion conditional is needed. (Tested with httpd-2.2.15 on CentOS-6.) Written with assistance of Todd Zullinger <tmz@pobox.com> Signed-off-by: Sebastian Kisela <skisela@redhat.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1976311 commit 757b124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-instaweb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ EOF
360360
break
361361
fi
362362
done
363-
for mod in mime dir env log_config authz_core
363+
for mod in mime dir env log_config authz_core unixd
364364
do
365365
if test -e $module_path/mod_${mod}.so
366366
then

0 commit comments

Comments
 (0)