From 1849f01b5b6b442c131d9b88bf39bb8671058a98 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 29 Jun 2010 21:44:58 -0500 Subject: 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 --- git-instaweb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-instaweb.sh') diff --git a/git-instaweb.sh b/git-instaweb.sh index 6635fbefd..a01476a80 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" -- cgit v1.2.1