Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan McGee <dpmcgee@gmail.com>2010-06-30 06:44:58 +0400
committerEric Wong <normalperson@yhbt.net>2010-07-23 22:10:21 +0400
commit1849f01b5b6b442c131d9b88bf39bb8671058a98 (patch)
tree2fdf82491371c4f14b263a7a15a358d3e1446689 /git-instaweb.sh
parent64fdc08dac6694d1e754580e7acb82dfa4988bb9 (diff)
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 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"