Skip to content

Commit

Permalink
git-instaweb: Fix custom apache log placement
Browse files Browse the repository at this point in the history
'CustomLog' is provided by mod_log_config so we need to include the module
in our generated config. This was added in d94775e.

Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Acked-by: Eric Wong <normalperson@yhbt.net>
  • Loading branch information
Dan McGee authored and Eric Wong committed Jul 23, 2010
1 parent 64fdc08 commit 1849f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-instaweb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1849f01

Please sign in to comment.