summaryrefslogtreecommitdiff
path: root/git-instaweb.sh
diff options
context:
space:
mode:
authorDan McGee <dpmcgee@gmail.com>2010-06-30 02:44:58 (GMT)
committerEric Wong <normalperson@yhbt.net>2010-07-23 18:10:21 (GMT)
commit1849f01b5b6b442c131d9b88bf39bb8671058a98 (patch)
tree2fdf82491371c4f14b263a7a15a358d3e1446689 /git-instaweb.sh
parent64fdc08dac6694d1e754580e7acb82dfa4988bb9 (diff)
downloadgit-1849f01b5b6b442c131d9b88bf39bb8671058a98.zip
git-1849f01b5b6b442c131d9b88bf39bb8671058a98.tar.gz
git-1849f01b5b6b442c131d9b88bf39bb8671058a98.tar.bz2
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 <dpmcgee@gmail.com> Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-instaweb.sh')
-rwxr-xr-xgit-instaweb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-instaweb.sh b/git-instaweb.sh
index 6635fbe..a01476a 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"