upgraded the nginx core to 1.5.7.

This commit is contained in:
Yichun Zhang (agentzh)
2013-12-15 13:21:56 -08:00
parent 02614af5ed
commit 8cec47f755
18 changed files with 2181 additions and 6 deletions

View File

@ -187,9 +187,12 @@ if [ "$answer" = "N" ]; then
echo
fi
echo "$info_txt applying the gzip_flush_bug patch for nginx $ver"
patch -p1 < $root/patches/nginx-$ver-gzip_flush_bug.patch || exit 1
echo
answer=`$root/util/ver-ge "$main_ver" 1.5.7`
if [ "$answer" = "N" ]; then
echo "$info_txt applying the gzip_flush_bug patch for nginx $ver"
patch -p1 < $root/patches/nginx-$ver-gzip_flush_bug.patch || exit 1
echo
fi
echo "$info_txt applying the cache_lock_hang_in_subreq patch for nginx $ver"
patch -p1 < $root/patches/nginx-$ver-cache_lock_hang_in_subreq.patch || exit 1