summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Kisela <skisela@redhat.com>2018-08-07 07:25:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-08-08 15:30:07 (GMT)
commit757b12494bd3e4c6cbc2fd081d60ed41b60208ae (patch)
treed14ca45f0f5f195933401889c5cde65e56792ecc
parent1976311aa285549599e5a451d7ad72b55a2b60e2 (diff)
downloadgit-757b12494bd3e4c6cbc2fd081d60ed41b60208ae.zip
git-757b12494bd3e4c6cbc2fd081d60ed41b60208ae.tar.gz
git-757b12494bd3e4c6cbc2fd081d60ed41b60208ae.tar.bz2
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>
-rwxr-xr-xgit-instaweb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-instaweb.sh b/git-instaweb.sh
index 675add1..eec264e 100755
--- a/git-instaweb.sh
+++ b/git-instaweb.sh
@@ -360,7 +360,7 @@ EOF
break
fi
done
- for mod in mime dir env log_config authz_core
+ for mod in mime dir env log_config authz_core unixd
do
if test -e $module_path/mod_${mod}.so
then