comparison auto/install @ 638:692f4d4d7f10 NGINX_1_0_9

nginx 1.0.9 *) Change: now the 0x7F-0x1F characters are escaped as \xXX in an access_log. *) Change: now SIGWINCH signal works only in daemon mode. *) Feature: "proxy/fastcgi/scgi/uwsgi_ignore_headers" directives support the following additional values: X-Accel-Limit-Rate, X-Accel-Buffering, X-Accel-Charset. *) Feature: decrease of memory consumption if SSL is used. *) Feature: accept filters are now supported on NetBSD. *) Feature: the "uwsgi_buffering" and "scgi_buffering" directives. Thanks to Peter Smit. *) Bugfix: a segmentation fault occurred on start or while reconfiguration if the "ssl" directive was used at http level and there was no "ssl_certificate" defined. *) Bugfix: some UTF-8 characters were processed incorrectly. Thanks to Alexey Kuts. *) Bugfix: the ngx_http_rewrite_module directives specified at "server" level were executed twice if no matching locations were defined. *) Bugfix: a socket leak might occurred if "aio sendfile" was used. *) Bugfix: connections with fast clients might be closed after send_timeout if file AIO was used. *) Bugfix: in the ngx_http_autoindex_module. *) Bugfix: the module ngx_http_mp4_module did not support seeking on 32-bit platforms. *) Bugfix: non-cacheable responses might be cached if "proxy_cache_bypass" directive was used. Thanks to John Ferlito. *) Bugfix: cached responses with an empty body were returned incorrectly; the bug had appeared in 0.8.31. *) Bugfix: 201 responses of the ngx_http_dav_module were incorrect; the bug had appeared in 0.8.32. *) Bugfix: in the "return" directive. *) Bugfix: the "ssl_verify_client", "ssl_verify_depth", and "ssl_prefer_server_ciphers" directives might work incorrectly if SNI was used.
author Igor Sysoev <http://sysoev.ru>
date Tue, 01 Nov 2011 00:00:00 +0400
parents 428c6e58046a
children 1b80544421e8
comparison
equal deleted inserted replaced
637:ea7441793bba 638:692f4d4d7f10
51 ;; 51 ;;
52 esac 52 esac
53 53
54 54
55 case ".$NGX_ERROR_LOG_PATH" in 55 case ".$NGX_ERROR_LOG_PATH" in
56 ./*) 56 ./* | .)
57 ;; 57 ;;
58 58
59 *) 59 *)
60 NGX_ERROR_LOG_PATH=$NGX_PREFIX/$NGX_ERROR_LOG_PATH 60 NGX_ERROR_LOG_PATH=$NGX_PREFIX/$NGX_ERROR_LOG_PATH
61 ;; 61 ;;
76 76
77 manpage: 77 manpage:
78 sed -e "s|%%PREFIX%%|$NGX_PREFIX|" \\ 78 sed -e "s|%%PREFIX%%|$NGX_PREFIX|" \\
79 -e "s|%%PID_PATH%%|$NGX_PID_PATH|" \\ 79 -e "s|%%PID_PATH%%|$NGX_PID_PATH|" \\
80 -e "s|%%CONF_PATH%%|$NGX_CONF_PATH|" \\ 80 -e "s|%%CONF_PATH%%|$NGX_CONF_PATH|" \\
81 -e "s|%%ERROR_LOG_PATH%%|$NGX_ERROR_LOG_PATH|" \\ 81 -e "s|%%ERROR_LOG_PATH%%|${NGX_ERROR_LOG_PATH:-stderr}|" \\
82 < man/nginx.8 > $NGX_OBJS/nginx.8 82 < man/nginx.8 > $NGX_OBJS/nginx.8
83 83
84 install: $NGX_OBJS${ngx_dirsep}nginx${ngx_binext} \ 84 install: $NGX_OBJS${ngx_dirsep}nginx${ngx_binext} \
85 $NGX_INSTALL_PERL_MODULES 85 $NGX_INSTALL_PERL_MODULES
86 test -d '\$(DESTDIR)$NGX_PREFIX' || mkdir -p '\$(DESTDIR)$NGX_PREFIX' 86 test -d '\$(DESTDIR)$NGX_PREFIX' || mkdir -p '\$(DESTDIR)$NGX_PREFIX'
135 test -d '\$(DESTDIR)$NGX_PREFIX/html' \ 135 test -d '\$(DESTDIR)$NGX_PREFIX/html' \
136 || cp -r html '\$(DESTDIR)$NGX_PREFIX' 136 || cp -r html '\$(DESTDIR)$NGX_PREFIX'
137 END 137 END
138 138
139 139
140 if test -n "\$(DESTDIR)$NGX_ERROR_LOG_PATH"; then 140 if test -n "$NGX_ERROR_LOG_PATH"; then
141 cat << END >> $NGX_MAKEFILE 141 cat << END >> $NGX_MAKEFILE
142 142
143 test -d '\$(DESTDIR)`dirname "$NGX_ERROR_LOG_PATH"`' || \ 143 test -d '\$(DESTDIR)`dirname "$NGX_ERROR_LOG_PATH"`' || \
144 mkdir -p '\$(DESTDIR)`dirname "$NGX_ERROR_LOG_PATH"`' 144 mkdir -p '\$(DESTDIR)`dirname "$NGX_ERROR_LOG_PATH"`'
145 END 145 END