comparison auto/init @ 501:98143f74eb3d NGINX_0_7_58

nginx 0.7.58 *) Feature: a "listen" directive of the mail proxy module supports IPv6. *) Feature: the "image_filter_jpeg_quality" directive. *) Feature: the "client_body_in_single_buffer" directive. *) Feature: the $request_body variable. *) Bugfix: in ngx_http_autoindex_module in file name links having a ":" symbol in the name. *) Bugfix: "make upgrade" procedure did not work; the bug had appeared in 0.7.53. Thanks to Denis F. Latypoff.
author Igor Sysoev <http://sysoev.ru>
date Mon, 18 May 2009 00:00:00 +0400
parents 9fc4ab6673f9
children
comparison
equal deleted inserted replaced
500:bb2281a3edb6 501:98143f74eb3d
41 41
42 # create Makefile 42 # create Makefile
43 43
44 cat << END > Makefile 44 cat << END > Makefile
45 45
46 build: 46 default: build
47 \$(MAKE) -f $NGX_MAKEFILE
48
49 install:
50 \$(MAKE) -f $NGX_MAKEFILE install
51 47
52 clean: 48 clean:
53 rm -rf Makefile $NGX_OBJS 49 rm -rf Makefile $NGX_OBJS
54
55 upgrade:
56 $NGX_SBIN_PATH -t
57
58 kill -USR2 \`cat $NGX_PID_PATH\`
59 sleep 1
60 test -f $NGX_PID_PATH.oldbin
61
62 kill -QUIT \`cat $NGX_PID_PATH.oldbin\`
63
64 upgrade1:
65 # upgrade 0.1.x to 0.2+
66
67 $NGX_SBIN_PATH -t
68
69 cp $NGX_PID_PATH $NGX_PID_PATH.oldbin
70
71 kill -USR2 \`cat $NGX_PID_PATH\`
72 sleep 1
73 test -f $NGX_PID_PATH.oldbin
74
75 cp $NGX_PID_PATH $NGX_PID_PATH.newbin
76
77 kill -QUIT \`cat $NGX_PID_PATH.oldbin\`
78 END 50 END