nginxtra 1.2.8.8 → 1.4.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/bin/nginxtra +1 -1
  2. data/bin/nginxtra_rails +1 -1
  3. data/lib/nginxtra/version.rb +1 -1
  4. data/vendor/nginx/CHANGES +202 -63
  5. data/vendor/nginx/CHANGES.ru +208 -66
  6. data/vendor/nginx/auto/lib/md5/conf +3 -3
  7. data/vendor/nginx/auto/lib/perl/conf +3 -1
  8. data/vendor/nginx/auto/lib/perl/make +21 -16
  9. data/vendor/nginx/auto/lib/sha1/conf +1 -1
  10. data/vendor/nginx/auto/modules +25 -4
  11. data/vendor/nginx/auto/options +7 -1
  12. data/vendor/nginx/auto/sources +15 -1
  13. data/vendor/nginx/auto/unix +14 -0
  14. data/vendor/nginx/src/core/nginx.h +2 -2
  15. data/vendor/nginx/src/core/ngx_array.c +1 -7
  16. data/vendor/nginx/src/core/ngx_array.h +2 -2
  17. data/vendor/nginx/src/core/ngx_connection.c +13 -7
  18. data/vendor/nginx/src/core/ngx_connection.h +1 -2
  19. data/vendor/nginx/src/core/ngx_core.h +1 -2
  20. data/vendor/nginx/src/core/ngx_crypt.c +37 -0
  21. data/vendor/nginx/src/core/ngx_cycle.h +1 -1
  22. data/vendor/nginx/src/core/ngx_inet.c +219 -48
  23. data/vendor/nginx/src/core/ngx_inet.h +1 -1
  24. data/vendor/nginx/src/event/modules/ngx_devpoll_module.c +7 -1
  25. data/vendor/nginx/src/event/modules/ngx_eventport_module.c +1 -1
  26. data/vendor/nginx/src/event/ngx_event.c +5 -1
  27. data/vendor/nginx/src/event/ngx_event.h +1 -0
  28. data/vendor/nginx/src/event/ngx_event_connect.c +1 -1
  29. data/vendor/nginx/src/event/ngx_event_openssl.c +135 -9
  30. data/vendor/nginx/src/event/ngx_event_openssl.h +9 -0
  31. data/vendor/nginx/src/event/ngx_event_openssl_stapling.c +1749 -0
  32. data/vendor/nginx/src/http/modules/ngx_http_addition_filter_module.c +1 -0
  33. data/vendor/nginx/src/http/modules/ngx_http_chunked_filter_module.c +1 -0
  34. data/vendor/nginx/src/http/modules/ngx_http_fastcgi_module.c +5 -0
  35. data/vendor/nginx/src/http/modules/ngx_http_flv_module.c +4 -0
  36. data/vendor/nginx/src/http/modules/ngx_http_geo_module.c +7 -8
  37. data/vendor/nginx/src/http/modules/ngx_http_geoip_module.c +10 -12
  38. data/vendor/nginx/src/http/modules/ngx_http_gunzip_filter_module.c +677 -0
  39. data/vendor/nginx/src/http/modules/ngx_http_gzip_filter_module.c +3 -0
  40. data/vendor/nginx/src/http/modules/ngx_http_gzip_static_module.c +36 -10
  41. data/vendor/nginx/src/http/modules/ngx_http_headers_filter_module.c +31 -13
  42. data/vendor/nginx/src/http/modules/ngx_http_image_filter_module.c +13 -0
  43. data/vendor/nginx/src/http/modules/ngx_http_limit_conn_module.c +18 -2
  44. data/vendor/nginx/src/http/modules/ngx_http_limit_req_module.c +19 -2
  45. data/vendor/nginx/src/http/modules/ngx_http_map_module.c +1 -1
  46. data/vendor/nginx/src/http/modules/ngx_http_memcached_module.c +60 -8
  47. data/vendor/nginx/src/http/modules/ngx_http_mp4_module.c +4 -8
  48. data/vendor/nginx/src/http/modules/ngx_http_not_modified_filter_module.c +126 -29
  49. data/vendor/nginx/src/http/modules/ngx_http_proxy_module.c +59 -301
  50. data/vendor/nginx/src/http/modules/ngx_http_range_filter_module.c +34 -6
  51. data/vendor/nginx/src/http/modules/ngx_http_realip_module.c +13 -12
  52. data/vendor/nginx/src/http/modules/ngx_http_scgi_module.c +30 -11
  53. data/vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.c +1 -0
  54. data/vendor/nginx/src/http/modules/ngx_http_ssl_module.c +155 -4
  55. data/vendor/nginx/src/http/modules/ngx_http_ssl_module.h +6 -0
  56. data/vendor/nginx/src/http/modules/ngx_http_static_module.c +4 -0
  57. data/vendor/nginx/src/http/modules/ngx_http_stub_status_module.c +90 -3
  58. data/vendor/nginx/src/http/modules/ngx_http_sub_filter_module.c +1 -0
  59. data/vendor/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c +5 -0
  60. data/vendor/nginx/src/http/modules/ngx_http_upstream_least_conn_module.c +5 -0
  61. data/vendor/nginx/src/http/modules/ngx_http_uwsgi_module.c +14 -1
  62. data/vendor/nginx/src/http/modules/ngx_http_xslt_filter_module.c +1 -0
  63. data/vendor/nginx/src/http/modules/perl/Makefile.PL +4 -2
  64. data/vendor/nginx/src/http/modules/perl/nginx.pm +1 -1
  65. data/vendor/nginx/src/http/modules/perl/nginx.xs +36 -3
  66. data/vendor/nginx/src/http/ngx_http.c +24 -1
  67. data/vendor/nginx/src/http/ngx_http.h +26 -2
  68. data/vendor/nginx/src/http/ngx_http_core_module.c +136 -10
  69. data/vendor/nginx/src/http/ngx_http_core_module.h +37 -13
  70. data/vendor/nginx/src/http/ngx_http_header_filter_module.c +9 -2
  71. data/vendor/nginx/src/http/ngx_http_parse.c +404 -0
  72. data/vendor/nginx/src/http/ngx_http_request.c +840 -517
  73. data/vendor/nginx/src/http/ngx_http_request.h +37 -25
  74. data/vendor/nginx/src/http/ngx_http_request_body.c +585 -156
  75. data/vendor/nginx/src/http/ngx_http_spdy.c +2882 -0
  76. data/vendor/nginx/src/http/ngx_http_spdy.h +235 -0
  77. data/vendor/nginx/src/http/ngx_http_spdy_filter_module.c +999 -0
  78. data/vendor/nginx/src/http/ngx_http_spdy_module.c +351 -0
  79. data/vendor/nginx/src/http/ngx_http_spdy_module.h +36 -0
  80. data/vendor/nginx/src/http/ngx_http_special_response.c +3 -1
  81. data/vendor/nginx/src/http/ngx_http_upstream.c +415 -26
  82. data/vendor/nginx/src/http/ngx_http_upstream.h +11 -1
  83. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.c +2 -45
  84. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.h +0 -2
  85. data/vendor/nginx/src/http/ngx_http_variables.c +72 -12
  86. data/vendor/nginx/src/mail/ngx_mail.h +2 -2
  87. data/vendor/nginx/src/mail/ngx_mail_auth_http_module.c +35 -25
  88. data/vendor/nginx/src/mail/ngx_mail_core_module.c +5 -1
  89. metadata +9 -2
data/bin/nginxtra CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require "rubygems"
3
- gem "nginxtra", "= 1.2.8.8"
3
+ gem "nginxtra", "= 1.4.0.8"
4
4
  gem "thor", "~> 0.16.0"
5
5
  require "nginxtra"
6
6
  Nginxtra::CLI.start
data/bin/nginxtra_rails CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require "rubygems"
3
- gem "nginxtra", "= 1.2.8.8"
3
+ gem "nginxtra", "= 1.4.0.8"
4
4
  gem "thor", "~> 0.16.0"
5
5
  require "nginxtra"
6
6
  Nginxtra::Rails::CLI.start
@@ -6,7 +6,7 @@ module Nginxtra
6
6
  end
7
7
 
8
8
  def to_s
9
- "1.2.8.8"
9
+ "1.4.0.8"
10
10
  end
11
11
  end
12
12
  end
data/vendor/nginx/CHANGES CHANGED
@@ -1,22 +1,143 @@
1
1
 
2
- Changes with nginx 1.2.8 02 Apr 2013
2
+ Changes with nginx 1.4.0 24 Apr 2013
3
3
 
4
- *) Bugfix: new sessions were not always stored if the "ssl_session_cache
5
- shared" directive was used and there was no free space in shared
6
- memory.
4
+ *) Bugfix: nginx could not be built with the ngx_http_perl_module if the
5
+ --with-openssl option was used; the bug had appeared in 1.3.16.
6
+
7
+ *) Bugfix: in a request body handling in the ngx_http_perl_module; the
8
+ bug had appeared in 1.3.9.
9
+
10
+
11
+ Changes with nginx 1.3.16 16 Apr 2013
12
+
13
+ *) Bugfix: a segmentation fault might occur in a worker process if
14
+ subrequests were used; the bug had appeared in 1.3.9.
15
+
16
+ *) Bugfix: the "tcp_nodelay" directive caused an error if a WebSocket
17
+ connection was proxied into a unix domain socket.
18
+
19
+ *) Bugfix: the $upstream_response_length variable has an incorrect value
20
+ "0" if buffering was not used.
21
+ Thanks to Piotr Sikora.
22
+
23
+ *) Bugfix: in the eventport and /dev/poll methods.
24
+
25
+
26
+ Changes with nginx 1.3.15 26 Mar 2013
27
+
28
+ *) Change: opening and closing a connection without sending any data in
29
+ it is no longer logged to access_log with error code 400.
30
+
31
+ *) Feature: the ngx_http_spdy_module.
32
+ Thanks to Automattic for sponsoring this work.
33
+
34
+ *) Feature: the "limit_req_status" and "limit_conn_status" directives.
35
+ Thanks to Nick Marden.
36
+
37
+ *) Feature: the "image_filter_interlace" directive.
38
+ Thanks to Ian Babrou.
39
+
40
+ *) Feature: $connections_waiting variable in the
41
+ ngx_http_stub_status_module.
42
+
43
+ *) Feature: the mail proxy module now supports IPv6 backends.
44
+
45
+ *) Bugfix: request body might be transmitted incorrectly when retrying a
46
+ request to the next upstream server; the bug had appeared in 1.3.9.
7
47
  Thanks to Piotr Sikora.
8
48
 
49
+ *) Bugfix: in the "client_body_in_file_only" directive; the bug had
50
+ appeared in 1.3.9.
51
+
9
52
  *) Bugfix: responses might hang if subrequests were used and a DNS error
10
53
  happened during subrequest processing.
11
54
  Thanks to Lanshun Zhou.
12
55
 
56
+ *) Bugfix: in backend usage accounting.
57
+
58
+
59
+ Changes with nginx 1.3.14 05 Mar 2013
60
+
61
+ *) Feature: $connections_active, $connections_reading, and
62
+ $connections_writing variables in the ngx_http_stub_status_module.
63
+
64
+ *) Feature: support of WebSocket connections in the
65
+ ngx_http_uwsgi_module and ngx_http_scgi_module.
66
+
67
+ *) Bugfix: in virtual servers handling with SNI.
68
+
69
+ *) Bugfix: new sessions were not always stored if the "ssl_session_cache
70
+ shared" directive was used and there was no free space in shared
71
+ memory.
72
+ Thanks to Piotr Sikora.
73
+
74
+ *) Bugfix: multiple X-Forwarded-For headers were handled incorrectly.
75
+ Thanks to Neal Poole for sponsoring this work.
76
+
13
77
  *) Bugfix: in the ngx_http_mp4_module.
14
78
  Thanks to Gernot Vormayr.
15
79
 
16
- *) Bugfix: in backend usage accounting.
17
80
 
81
+ Changes with nginx 1.3.13 19 Feb 2013
82
+
83
+ *) Change: a compiler with name "cc" is now used by default.
84
+
85
+ *) Feature: support for proxying of WebSocket connections.
86
+ Thanks to Apcera and CloudBees for sponsoring this work.
87
+
88
+ *) Feature: the "auth_basic_user_file" directive supports "{SHA}"
89
+ password encryption method.
90
+ Thanks to Louis Opter.
91
+
92
+
93
+ Changes with nginx 1.3.12 05 Feb 2013
94
+
95
+ *) Feature: variables support in the "proxy_bind", "fastcgi_bind",
96
+ "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
18
97
 
19
- Changes with nginx 1.2.7 12 Feb 2013
98
+ *) Feature: the $pipe, $request_length, $time_iso8601, and $time_local
99
+ variables can now be used not only in the "log_format" directive.
100
+ Thanks to Kiril Kalchev.
101
+
102
+ *) Feature: IPv6 support in the ngx_http_geoip_module.
103
+ Thanks to Gregor Kališnik.
104
+
105
+ *) Bugfix: in the "proxy_method" directive.
106
+
107
+ *) Bugfix: a segmentation fault might occur in a worker process if
108
+ resolver was used with the poll method.
109
+
110
+ *) Bugfix: nginx might hog CPU during SSL handshake with a backend if
111
+ the select, poll, or /dev/poll methods were used.
112
+
113
+ *) Bugfix: the "[crit] SSL_write() failed (SSL:)" error.
114
+
115
+ *) Bugfix: in the "client_body_in_file_only" directive; the bug had
116
+ appeared in 1.3.9.
117
+
118
+ *) Bugfix: in the "fastcgi_keep_conn" directive.
119
+
120
+
121
+ Changes with nginx 1.3.11 10 Jan 2013
122
+
123
+ *) Bugfix: a segmentation fault might occur if logging was used; the bug
124
+ had appeared in 1.3.10.
125
+
126
+ *) Bugfix: the "proxy_pass" directive did not work with IP addresses
127
+ without port specified; the bug had appeared in 1.3.10.
128
+
129
+ *) Bugfix: a segmentation fault occurred on start or during
130
+ reconfiguration if the "keepalive" directive was specified more than
131
+ once in a single upstream block.
132
+
133
+ *) Bugfix: parameter "default" of the "geo" directive did not set
134
+ default value for IPv6 addresses.
135
+
136
+
137
+ Changes with nginx 1.3.10 25 Dec 2012
138
+
139
+ *) Change: domain names specified in configuration file are now resolved
140
+ to IPv6 addresses as well as IPv4 ones.
20
141
 
21
142
  *) Change: now if the "include" directive with mask is used on Unix
22
143
  systems, included files are sorted in alphabetical order.
@@ -31,13 +152,6 @@ Changes with nginx 1.2.7 12 Feb 2013
31
152
 
32
153
  *) Feature: variables support in the "auth_basic" directive.
33
154
 
34
- *) Feature: the $pipe, $request_length, $time_iso8601, and $time_local
35
- variables can now be used not only in the "log_format" directive.
36
- Thanks to Kiril Kalchev.
37
-
38
- *) Feature: IPv6 support in the ngx_http_geoip_module.
39
- Thanks to Gregor Kališnik.
40
-
41
155
  *) Bugfix: nginx could not be built with the ngx_http_perl_module in
42
156
  some cases.
43
157
 
@@ -71,24 +185,11 @@ Changes with nginx 1.2.7 12 Feb 2013
71
185
  *) Bugfix: proxied HEAD requests might return incorrect response if the
72
186
  "gzip" directive was used.
73
187
 
74
- *) Bugfix: a segmentation fault occurred on start or during
75
- reconfiguration if the "keepalive" directive was specified more than
76
- once in a single upstream block.
77
188
 
78
- *) Bugfix: in the "proxy_method" directive.
189
+ Changes with nginx 1.3.9 27 Nov 2012
79
190
 
80
- *) Bugfix: a segmentation fault might occur in a worker process if
81
- resolver was used with the poll method.
82
-
83
- *) Bugfix: nginx might hog CPU during SSL handshake with a backend if
84
- the select, poll, or /dev/poll methods were used.
85
-
86
- *) Bugfix: the "[crit] SSL_write() failed (SSL:)" error.
87
-
88
- *) Bugfix: in the "fastcgi_keep_conn" directive.
89
-
90
-
91
- Changes with nginx 1.2.6 11 Dec 2012
191
+ *) Feature: support for chunked transfer encoding while reading client
192
+ request body.
92
193
 
93
194
  *) Feature: the $request_time and $msec variables can now be used not
94
195
  only in the "log_format" directive.
@@ -99,7 +200,7 @@ Changes with nginx 1.2.6 11 Dec 2012
99
200
  *) Bugfix: in the ngx_http_dav_module.
100
201
 
101
202
 
102
- Changes with nginx 1.2.5 13 Nov 2012
203
+ Changes with nginx 1.3.8 30 Oct 2012
103
204
 
104
205
  *) Feature: the "optional_no_ca" parameter of the "ssl_verify_client"
105
206
  directive.
@@ -109,17 +210,35 @@ Changes with nginx 1.2.5 13 Nov 2012
109
210
  variables can now be used not only in the "log_format" directive.
110
211
  Thanks to Benjamin Grössing.
111
212
 
112
- *) Feature: resolver now randomly rotates addresses returned from cache.
113
- Thanks to Anton Jouline.
114
-
115
213
  *) Feature: the "auto" parameter of the "worker_processes" directive.
116
214
 
117
215
  *) Bugfix: "cache file ... has md5 collision" alert.
118
216
 
217
+ *) Bugfix: in the ngx_http_gunzip_filter_module.
218
+
219
+ *) Bugfix: in the "ssl_stapling" directive.
220
+
221
+
222
+ Changes with nginx 1.3.7 02 Oct 2012
223
+
224
+ *) Feature: OCSP stapling support.
225
+ Thanks to Comodo, DigiCert and GlobalSign for sponsoring this work.
226
+
227
+ *) Feature: the "ssl_trusted_certificate" directive.
228
+
229
+ *) Feature: resolver now randomly rotates addresses returned from cache.
230
+ Thanks to Anton Jouline.
231
+
119
232
  *) Bugfix: OpenSSL 0.9.7 compatibility.
120
233
 
121
234
 
122
- Changes with nginx 1.2.4 25 Sep 2012
235
+ Changes with nginx 1.3.6 12 Sep 2012
236
+
237
+ *) Feature: the ngx_http_gunzip_filter_module.
238
+
239
+ *) Feature: the "memcached_gzip_flag" directive.
240
+
241
+ *) Feature: the "always" parameter of the "gzip_static" directive.
123
242
 
124
243
  *) Bugfix: in the "limit_req" directive; the bug had appeared in 1.1.14.
125
244
  Thanks to Charles Chen.
@@ -127,6 +246,12 @@ Changes with nginx 1.2.4 25 Sep 2012
127
246
  *) Bugfix: nginx could not be built by gcc 4.7 with -O2 optimization if
128
247
  the --with-ipv6 option was used.
129
248
 
249
+
250
+ Changes with nginx 1.3.5 21 Aug 2012
251
+
252
+ *) Change: the ngx_http_mp4_module module no longer skips tracks in
253
+ formats other than H.264 and AAC.
254
+
130
255
  *) Bugfix: a segmentation fault might occur in a worker process if the
131
256
  "map" directive was used with variables as values.
132
257
 
@@ -147,7 +272,10 @@ Changes with nginx 1.2.4 25 Sep 2012
147
272
  Thanks to HAYASHI Kentaro.
148
273
 
149
274
 
150
- Changes with nginx 1.2.3 07 Aug 2012
275
+ Changes with nginx 1.3.4 31 Jul 2012
276
+
277
+ *) Change: the "ipv6only" parameter is now turned on by default for
278
+ listening IPv6 sockets.
151
279
 
152
280
  *) Feature: the Clang compiler support.
153
281
 
@@ -163,6 +291,11 @@ Changes with nginx 1.2.3 07 Aug 2012
163
291
  "fastcgi_hide_header", "scgi_hide_header", and "uwsgi_hide_header"
164
292
  directives might be inherited incorrectly.
165
293
 
294
+
295
+ Changes with nginx 1.3.3 10 Jul 2012
296
+
297
+ *) Feature: entity tags support and the "etag" directive.
298
+
166
299
  *) Bugfix: trailing dot in a source value was not ignored if the "map"
167
300
  directive was used with the "hostnames" parameter.
168
301
 
@@ -171,7 +304,7 @@ Changes with nginx 1.2.3 07 Aug 2012
171
304
  to a named location.
172
305
 
173
306
 
174
- Changes with nginx 1.2.2 03 Jul 2012
307
+ Changes with nginx 1.3.2 26 Jun 2012
175
308
 
176
309
  *) Change: the "single" parameter of the "keepalive" directive is now
177
310
  ignored.
@@ -179,6 +312,36 @@ Changes with nginx 1.2.2 03 Jul 2012
179
312
  *) Change: SSL compression is now disabled when using all versions of
180
313
  OpenSSL, including ones prior to 1.0.0.
181
314
 
315
+ *) Feature: it is now possible to use the "ip_hash" directive to balance
316
+ IPv6 clients.
317
+
318
+ *) Feature: the $status variable can now be used not only in the
319
+ "log_format" directive.
320
+
321
+ *) Bugfix: a segmentation fault might occur in a worker process on
322
+ shutdown if the "resolver" directive was used.
323
+
324
+ *) Bugfix: a segmentation fault might occur in a worker process if the
325
+ ngx_http_mp4_module was used.
326
+
327
+ *) Bugfix: in the ngx_http_mp4_module.
328
+
329
+ *) Bugfix: a segmentation fault might occur in a worker process if
330
+ conflicting wildcard server names were used.
331
+
332
+ *) Bugfix: nginx might be terminated abnormally on a SIGBUS signal on
333
+ ARM platform.
334
+
335
+ *) Bugfix: an alert "sendmsg() failed (9: Bad file number)" on HP-UX
336
+ while reconfiguration.
337
+
338
+
339
+ Changes with nginx 1.3.1 05 Jun 2012
340
+
341
+ *) Security: now nginx/Windows ignores trailing dot in URI path
342
+ component, and does not allow URIs with ":$" in it.
343
+ Thanks to Vladimir Kochetkov, Positive Research Center.
344
+
182
345
  *) Feature: the "proxy_pass", "fastcgi_pass", "scgi_pass", "uwsgi_pass"
183
346
  directives, and the "server" directive inside the "upstream" block,
184
347
  now support IPv6 addresses.
@@ -191,11 +354,8 @@ Changes with nginx 1.2.2 03 Jul 2012
191
354
  *) Feature: it is now possible to specify a weight for servers while
192
355
  using the "ip_hash" directive.
193
356
 
194
- *) Feature: it is now possible to use the "ip_hash" directive to balance
195
- IPv6 clients.
196
-
197
- *) Feature: the $status variable can now be used not only in the
198
- "log_format" directive.
357
+ *) Bugfix: a segmentation fault might occur in a worker process if the
358
+ "image_filter" directive was used; the bug had appeared in 1.3.0.
199
359
 
200
360
  *) Bugfix: nginx could not be built with ngx_cpp_test_module; the bug
201
361
  had appeared in 1.1.12.
@@ -213,29 +373,8 @@ Changes with nginx 1.2.2 03 Jul 2012
213
373
  *) Bugfix: in the "proxy_cookie_domain" and "proxy_cookie_path"
214
374
  directives.
215
375
 
216
- *) Bugfix: a segmentation fault might occur in a worker process on
217
- shutdown if the "resolver" directive was used.
218
-
219
- *) Bugfix: a segmentation fault might occur in a worker process if the
220
- ngx_http_mp4_module was used.
221
376
 
222
- *) Bugfix: in the ngx_http_mp4_module.
223
-
224
- *) Bugfix: a segmentation fault might occur in a worker process if
225
- conflicting wildcard server names were used.
226
-
227
- *) Bugfix: nginx might be terminated abnormally on a SIGBUS signal on
228
- ARM platform.
229
-
230
- *) Bugfix: an alert "sendmsg() failed (9: Bad file number)" on HP-UX
231
- while reconfiguration.
232
-
233
-
234
- Changes with nginx 1.2.1 05 Jun 2012
235
-
236
- *) Security: now nginx/Windows ignores trailing dot in URI path
237
- component, and does not allow URIs with ":$" in it.
238
- Thanks to Vladimir Kochetkov, Positive Research Center.
377
+ Changes with nginx 1.3.0 15 May 2012
239
378
 
240
379
  *) Feature: the "debug_connection" directive now supports IPv6 addresses
241
380
  and the "unix:" parameter.
@@ -1,35 +1,102 @@
1
1
 
2
- Изменения в nginx 1.2.8 02.04.2013
2
+ Изменения в nginx 1.4.0 24.04.2013
3
3
 
4
- *) Исправление: при использовании директивы "ssl_session_cache shared"
5
- новые сессии могли не сохраняться, если заканчивалось место в
6
- разделяемой памяти.
4
+ *) Исправление: nginx не собирался с модулем ngx_http_perl_module, если
5
+ использовался параметр --with-openssl; ошибка появилась в 1.3.16.
6
+
7
+ *) Исправление: в работе с телом запроса из модуля ngx_http_perl_module;
8
+ ошибка появилась в 1.3.9.
9
+
10
+
11
+ Изменения в nginx 1.3.16 16.04.2013
12
+
13
+ *) Исправление: в рабочем процессе мог произойти segmentation fault,
14
+ если использовались подзапросы; ошибка появилась в 1.3.9.
15
+
16
+ *) Исправление: директива tcp_nodelay вызывала ошибку при проксировании
17
+ WebSocket-соединений в unix domain сокет.
18
+
19
+ *) Исправление: переменная $upstream_response_length возвращала значение
20
+ "0", если не использовалась буферизация.
21
+ Спасибо Piotr Sikora.
22
+
23
+ *) Исправление: в методах обработки соединений eventport и /dev/poll.
24
+
25
+
26
+ Изменения в nginx 1.3.15 26.03.2013
27
+
28
+ *) Изменение: открытие и закрытие соединения без отправки в нём
29
+ каких-либо данных больше не записывается в access_log с кодом ошибки
30
+ 400.
31
+
32
+ *) Добавление: модуль ngx_http_spdy_module.
33
+ Спасибо Automattic за спонсирование разработки.
34
+
35
+ *) Добавление: директивы limit_req_status и limit_conn_status.
36
+ Спасибо Nick Marden.
37
+
38
+ *) Добавление: директива image_filter_interlace.
39
+ Спасибо Ивану Боброву.
40
+
41
+ *) Добавление: переменная $connections_waiting в модуле
42
+ ngx_http_stub_status_module.
43
+
44
+ *) Добавление: теперь почтовый прокси-сервер поддерживает IPv6-бэкенды.
45
+
46
+ *) Исправление: при повторной отправке запроса на бэкенд тело запроса
47
+ могло передаваться неправильно; ошибка появилась в 1.3.9.
7
48
  Спасибо Piotr Sikora.
8
49
 
50
+ *) Исправление: в директиве client_body_in_file_only; ошибка появилась в
51
+ 1.3.9.
52
+
9
53
  *) Исправление: ответы могли зависать, если использовались подзапросы и
10
54
  при обработке подзапроса происходила DNS-ошибка.
11
55
  Спасибо Lanshun Zhou.
12
56
 
57
+ *) Исправление: в процедуре учёта использования бэкендов.
58
+
59
+
60
+ Изменения в nginx 1.3.14 05.03.2013
61
+
62
+ *) Добавление: переменные $connections_active, $connections_reading и
63
+ $connections_writing в модуле ngx_http_stub_status_module.
64
+
65
+ *) Добавление: поддержка WebSocket-соединений в модулях
66
+ ngx_http_uwsgi_module и ngx_http_scgi_module.
67
+
68
+ *) Исправление: в обработке виртуальных серверов при использовании SNI.
69
+
70
+ *) Исправление: при использовании директивы "ssl_session_cache shared"
71
+ новые сессии могли не сохраняться, если заканчивалось место в
72
+ разделяемой памяти.
73
+ Спасибо Piotr Sikora.
74
+
75
+ *) Исправление: несколько заголовков X-Forwarded-For обрабатывались
76
+ неправильно.
77
+ Спасибо Neal Poole за спонсирование разработки.
78
+
13
79
  *) Исправление: в модуле ngx_http_mp4_module.
14
80
  Спасибо Gernot Vormayr.
15
81
 
16
- *) Исправление: в процедуре учёта использования бэкендов.
17
82
 
83
+ Изменения в nginx 1.3.13 19.02.2013
18
84
 
19
- Изменения в nginx 1.2.7 12.02.2013
85
+ *) Изменение: теперь для сборки по умолчанию используется компилятор с
86
+ именем "cc".
20
87
 
21
- *) Изменение: теперь при использовании директивы include с маской на
22
- Unix-системах включаемые файлы сортируются в алфавитном порядке.
88
+ *) Добавление: поддержка проксирования WebSocket-соединений.
89
+ Спасибо Apcera и CloudBees за спонсирование разработки.
23
90
 
24
- *) Изменение: директива add_header добавляет строки в ответы с кодом
25
- 201.
91
+ *) Добавление: директива auth_basic_user_file поддерживает шифрование
92
+ паролей методом "{SHA}".
93
+ Спасибо Louis Opter.
26
94
 
27
- *) Добавление: директива geo теперь поддерживает IPv6 адреса в формате
28
- CIDR.
29
95
 
30
- *) Добавление: параметры flush и gzip в директиве access_log.
96
+ Изменения в nginx 1.3.12 05.02.2013
31
97
 
32
- *) Добавление: директива auth_basic поддерживает переменные.
98
+ *) Добавление: директивы proxy_bind, fastcgi_bind, memcached_bind,
99
+ scgi_bind и uwsgi_bind поддерживают переменные.
33
100
 
34
101
  *) Добавление: переменные $pipe, $request_length, $time_iso8601 и
35
102
  $time_local теперь можно использовать не только в директиве
@@ -39,6 +106,58 @@
39
106
  *) Добавление: поддержка IPv6 в модуле ngx_http_geoip_module.
40
107
  Спасибо Gregor Kališnik.
41
108
 
109
+ *) Исправление: директива proxy_method работала неверно, если была
110
+ указана на уровне http.
111
+
112
+ *) Исправление: в рабочем процессе мог произойти segmentation fault,
113
+ если использовался resolver и метод poll.
114
+
115
+ *) Исправление: nginx мог нагружать процессор во время SSL handshake с
116
+ бэкендом при использовании методов обработки соединений select, poll
117
+ и /dev/poll.
118
+
119
+ *) Исправление: ошибка "[crit] SSL_write() failed (SSL:)".
120
+
121
+ *) Исправление: в директиве client_body_in_file_only; ошибка появилась в
122
+ 1.3.9.
123
+
124
+ *) Исправление: в директиве fastcgi_keep_conn.
125
+
126
+
127
+ Изменения в nginx 1.3.11 10.01.2013
128
+
129
+ *) Исправление: при записи в лог мог происходить segmentation fault;
130
+ ошибка появилась в 1.3.10.
131
+
132
+ *) Исправление: директива proxy_pass не работала с IP-адресами без
133
+ явного указания порта; ошибка появилась в 1.3.10.
134
+
135
+ *) Исправление: на старте или во время переконфигурации происходил
136
+ segmentation fault, если директива keepalive была указана несколько
137
+ раз в одном блоке upstream.
138
+
139
+ *) Исправление: параметр default директивы geo не определял значение по
140
+ умолчанию для IPv6-адресов.
141
+
142
+
143
+ Изменения в nginx 1.3.10 25.12.2012
144
+
145
+ *) Изменение: для указанных в конфигурационном файле доменных имён
146
+ теперь используются не только IPv4, но и IPv6 адреса.
147
+
148
+ *) Изменение: теперь при использовании директивы include с маской на
149
+ Unix-системах включаемые файлы сортируются в алфавитном порядке.
150
+
151
+ *) Изменение: директива add_header добавляет строки в ответы с кодом
152
+ 201.
153
+
154
+ *) Добавление: директива geo теперь поддерживает IPv6 адреса в формате
155
+ CIDR.
156
+
157
+ *) Добавление: параметры flush и gzip в директиве access_log.
158
+
159
+ *) Добавление: директива auth_basic поддерживает переменные.
160
+
42
161
  *) Исправление: nginx в некоторых случаях не собирался с модулем
43
162
  ngx_http_perl_module.
44
163
 
@@ -73,26 +192,11 @@
73
192
  *) Исправление: при проксировании HEAD-запросов мог возвращаться
74
193
  некорректный ответ, если использовалась директива gzip.
75
194
 
76
- *) Исправление: на старте или во время переконфигурации происходил
77
- segmentation fault, если директива keepalive была указана несколько
78
- раз в одном блоке upstream.
79
195
 
80
- *) Исправление: директива proxy_method работала неверно, если была
81
- указана на уровне http.
196
+ Изменения в nginx 1.3.9 27.11.2012
82
197
 
83
- *) Исправление: в рабочем процессе мог произойти segmentation fault,
84
- если использовался resolver и метод poll.
85
-
86
- *) Исправление: nginx мог нагружать процессор во время SSL handshake с
87
- бэкендом при использовании методов обработки соединений select, poll
88
- и /dev/poll.
89
-
90
- *) Исправление: ошибка "[crit] SSL_write() failed (SSL:)".
91
-
92
- *) Исправление: в директиве fastcgi_keep_conn.
93
-
94
-
95
- Изменения в nginx 1.2.6 11.12.2012
198
+ *) Добавление: поддержка chunked transfer encoding при получении тела
199
+ запроса.
96
200
 
97
201
  *) Добавление: переменные $request_time и $msec теперь можно
98
202
  использовать не только в директиве log_format.
@@ -103,7 +207,7 @@
103
207
  *) Исправление: в модуле ngx_http_dav_module.
104
208
 
105
209
 
106
- Изменения в nginx 1.2.5 13.11.2012
210
+ Изменения в nginx 1.3.8 30.10.2012
107
211
 
108
212
  *) Добавление: параметр optional_no_ca директивы ssl_verify_client.
109
213
  Спасибо Михаилу Казанцеву и Eric O'Connor.
@@ -113,18 +217,36 @@
113
217
  log_format.
114
218
  Спасибо Benjamin Grössing.
115
219
 
220
+ *) Добавление: параметр auto директивы worker_processes.
221
+
222
+ *) Исправление: сообщения "cache file ... has md5 collision".
223
+
224
+ *) Исправление: в модуле ngx_http_gunzip_filter_module.
225
+
226
+ *) Исправление: в директиве ssl_stapling.
227
+
228
+
229
+ Изменения в nginx 1.3.7 02.10.2012
230
+
231
+ *) Добавление: поддержка OCSP stapling.
232
+ Спасибо Comodo, DigiCert и GlobalSign за спонсирование разработки.
233
+
234
+ *) Добавление: директива ssl_trusted_certificate.
235
+
116
236
  *) Добавление: теперь resolver случайным образом меняет порядок
117
237
  возвращаемых закэшированных адресов.
118
238
  Спасибо Антону Жулину.
119
239
 
120
- *) Добавление: параметр auto директивы worker_processes.
240
+ *) Исправление: совместимость с OpenSSL 0.9.7.
121
241
 
122
- *) Исправление: сообщения "cache file ... has md5 collision".
123
242
 
124
- *) Исправление: совместимость с OpenSSL 0.9.7.
243
+ Изменения в nginx 1.3.6 12.09.2012
244
+
245
+ *) Добавление: модуль ngx_http_gunzip_filter_module.
125
246
 
247
+ *) Добавление: директива memcached_gzip_flag.
126
248
 
127
- Изменения в nginx 1.2.4 25.09.2012
249
+ *) Добавление: параметр always директивы gzip_static.
128
250
 
129
251
  *) Исправление: в директиве "limit_req"; ошибка появилась в 1.1.14.
130
252
  Спасибо Charles Chen.
@@ -132,6 +254,12 @@
132
254
  *) Исправление: nginx не собирался gcc 4.7 с оптимизацией -O2 если
133
255
  использовался параметр --with-ipv6.
134
256
 
257
+
258
+ Изменения в nginx 1.3.5 21.08.2012
259
+
260
+ *) Изменение: модуль ngx_http_mp4_module больше не отфильтровывает
261
+ дорожки в форматах, отличных от H.264 и AAC.
262
+
135
263
  *) Исправление: в рабочем процессе мог произойти segmentation fault,
136
264
  если в директиве map в качестве значений использовались переменные.
137
265
 
@@ -151,7 +279,10 @@
151
279
  Спасибо HAYASHI Kentaro.
152
280
 
153
281
 
154
- Изменения в nginx 1.2.3 07.08.2012
282
+ Изменения в nginx 1.3.4 31.07.2012
283
+
284
+ *) Изменение: теперь на слушающих IPv6-сокетах параметр ipv6only включён
285
+ по умолчанию.
155
286
 
156
287
  *) Добавление: поддержка компилятора Clang.
157
288
 
@@ -167,6 +298,11 @@
167
298
  fastcgi_hide_header, scgi_hide_header и uwsgi_hide_header могли
168
299
  наследоваться некорректно.
169
300
 
301
+
302
+ Изменения в nginx 1.3.3 10.07.2012
303
+
304
+ *) Добавление: поддержка entity tags и директива etag.
305
+
170
306
  *) Исправление: при использовании директивы map с параметром hostnames
171
307
  не игнорировалась конечная точка в исходном значении.
172
308
 
@@ -175,45 +311,19 @@
175
311
  изменения URI с помощью директивы rewrite.
176
312
 
177
313
 
178
- Изменения в nginx 1.2.2 03.07.2012
314
+ Изменения в nginx 1.3.2 26.06.2012
179
315
 
180
316
  *) Изменение: параметр single директивы keepalive теперь игнорируется.
181
317
 
182
318
  *) Изменение: сжатие SSL теперь отключено в том числе при использовании
183
319
  OpenSSL cтарее 1.0.0.
184
320
 
185
- *) Добавление: директивы proxy_pass, fastcgi_pass, scgi_pass, uwsgi_pass
186
- и директива server в блоке upstream теперь поддерживают IPv6-адреса.
187
-
188
- *) Добавление: в директиве resolver теперь можно указывать порт и
189
- задавать IPv6-адреса DNS-серверов.
190
-
191
- *) Добавление: директива least_conn в блоке upstream.
192
-
193
- *) Добавление: при использовании директивы ip_hash теперь можно задавать
194
- веса серверов.
195
-
196
321
  *) Добавление: директиву "ip_hash" теперь можно использовать для
197
322
  балансировки IPv6 клиентов.
198
323
 
199
324
  *) Добавление: переменную $status теперь можно использовать не только в
200
325
  директиве log_format.
201
326
 
202
- *) Исправление: nginx не собирался с модулем ngx_cpp_test_module; ошибка
203
- появилась в 1.1.12.
204
-
205
- *) Исправление: доступ к переменным из SSI и встроенного перла мог не
206
- работать после переконфигурации.
207
- Спасибо Yichun Zhang.
208
-
209
- *) Исправление: в модуле ngx_http_xslt_filter_module.
210
- Спасибо Kuramoto Eiji.
211
-
212
- *) Исправление: утечки памяти при использовании переменной $geoip_org.
213
- Спасибо Денису Латыпову.
214
-
215
- *) Исправление: в директивах proxy_cookie_domain и proxy_cookie_path.
216
-
217
327
  *) Исправление: при завершении рабочего процесса мог произойти
218
328
  segmentation fault, если использовалась директива resolver.
219
329
 
@@ -232,13 +342,45 @@
232
342
  alert "sendmsg() failed (9: Bad file number)".
233
343
 
234
344
 
235
- Изменения в nginx 1.2.1 05.06.2012
345
+ Изменения в nginx 1.3.1 05.06.2012
236
346
 
237
347
  *) Безопасность: теперь nginx/Windows игнорирует точку в конце
238
348
  компонента URI и не разрешает URI, содержащие последовательность
239
349
  ":$".
240
350
  Спасибо Владимиру Кочеткову, Positive Research Center.
241
351
 
352
+ *) Добавление: директивы proxy_pass, fastcgi_pass, scgi_pass, uwsgi_pass
353
+ и директива server в блоке upstream теперь поддерживают IPv6-адреса.
354
+
355
+ *) Добавление: в директиве resolver теперь можно указывать порт и
356
+ задавать IPv6-адреса DNS-серверов.
357
+
358
+ *) Добавление: директива least_conn в блоке upstream.
359
+
360
+ *) Добавление: при использовании директивы ip_hash теперь можно задавать
361
+ веса серверов.
362
+
363
+ *) Исправление: в рабочем процессе мог произойти segmentation fault,
364
+ если использовалась директива image_filter; ошибка появилась в 1.3.0.
365
+
366
+ *) Исправление: nginx не собирался с модулем ngx_cpp_test_module; ошибка
367
+ появилась в 1.1.12.
368
+
369
+ *) Исправление: доступ к переменным из SSI и встроенного перла мог не
370
+ работать после переконфигурации.
371
+ Спасибо Yichun Zhang.
372
+
373
+ *) Исправление: в модуле ngx_http_xslt_filter_module.
374
+ Спасибо Kuramoto Eiji.
375
+
376
+ *) Исправление: утечки памяти при использовании переменной $geoip_org.
377
+ Спасибо Денису Латыпову.
378
+
379
+ *) Исправление: в директивах proxy_cookie_domain и proxy_cookie_path.
380
+
381
+
382
+ Изменения в nginx 1.3.0 15.05.2012
383
+
242
384
  *) Добавление: директива debug_connection теперь поддерживает
243
385
  IPv6-адреса и параметр "unix:".
244
386