From: Dan McGee Date: Wed, 30 Jun 2010 02:44:58 +0000 (-0500) Subject: git-instaweb: Fix custom apache log placement X-Git-Tag: v1.7.2.1~17 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1849f01b5b6b442c131d9b88bf39bb8671058a98?hp=--cc git-instaweb: Fix custom apache log placement 'CustomLog' is provided by mod_log_config so we need to include the module in our generated config. This was added in d94775e1f9a. Signed-off-by: Dan McGee Acked-by: Eric Wong --- 1849f01b5b6b442c131d9b88bf39bb8671058a98 diff --git a/git-instaweb.sh b/git-instaweb.sh index 6635fbefdf..a01476a80f 100755 --- a/git-instaweb.sh +++ b/git-instaweb.sh @@ -314,7 +314,7 @@ PidFile "$fqgitdir/pid" Listen $bind$port EOF - for mod in mime dir; do + for mod in mime dir log_config; do if test -e $module_path/mod_${mod}.so; then echo "LoadModule ${mod}_module " \ "$module_path/mod_${mod}.so" >> "$conf"