diff options
author | Dan McGee <dpmcgee@gmail.com> | 2010-06-29 21:44:58 -0500 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2010-07-23 11:10:21 -0700 |
commit | 1849f01b5b6b442c131d9b88bf39bb8671058a98 (patch) | |
tree | 2fdf82491371c4f14b263a7a15a358d3e1446689 /git-instaweb.sh | |
parent | 64fdc08dac6694d1e754580e7acb82dfa4988bb9 (diff) | |
download | git-1849f01b5b6b442c131d9b88bf39bb8671058a98.tar.gz |
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-x | git-instaweb.sh | 2 |
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" |