comparison docs/xml/nginx/changes.xml @ 501:d4ea69372b94 release-0.1.25

nginx-0.1.25-RELEASE import *) Bugfix: nginx did run on Linux parisc. *) Feature: nginx now does not start under FreeBSD if the sysctl kern.ipc.somaxconn value is too big. *) Bugfix: if a request was internally redirected by the ngx_http_index_module module to the ngx_http_proxy_module or ngx_http_fastcgi_module modules, then the index file was not closed after request completion. *) Feature: the "proxy_pass" can be used in location with regular expression. *) Feature: the ngx_http_rewrite_filter_module module supports the condition like "if ($HTTP_USER_AGENT ~ MSIE)". *) Bugfix: nginx started too slow if the large number of addresses and text values were used in the "geo" directive. *) Change: a variable name must be declared as "$name" in the "geo" directive. The previous variant without "$" is still supported, but will be removed soon. *) Feature: the "%{VARIABLE}v" logging parameter. *) Feature: the "set $name value" directive. *) Bugfix: gcc 4.0 compatibility. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
author Igor Sysoev <igor@sysoev.ru>
date Sat, 19 Mar 2005 12:38:37 +0000
parents 64d9afb209da
children b1648294f693
comparison
equal deleted inserted replaced
500:9a0f304470f5 501:d4ea69372b94
5 <change_log link="/nginx/changes.html" path="/nginx/" root=".." 5 <change_log link="/nginx/changes.html" path="/nginx/" root=".."
6 title="nginx"> 6 title="nginx">
7 7
8 <title lang="ru">Изменения в nginx</title> 8 <title lang="ru">Изменения в nginx</title>
9 <title lang="en">nginx changelog</title> 9 <title lang="en">nginx changelog</title>
10
11
12 <changes ver="0.1.25" date="19.03.2005">
13
14 <change type="bugfix">
15 <para lang="ru">
16 nginx не работал на Linux parisc.
17 </para>
18 <para lang="en">
19 nginx did run on Linux parisc.
20 </para>
21 </change>
22
23 <change type="feature">
24 <para lang="ru">
25 nginx теперь не запускается под FreeBSD, если значение
26 sysctl kern.ipc.somaxconn слишком большое.
27 </para>
28 <para lang="en">
29 nginx now does not start under FreeBSD if the sysctl kern.ipc.somaxconn
30 value is too big.
31 </para>
32 </change>
33
34 <change type="bugfix">
35 <para lang="ru">
36 если модуль ngx_http_index_module делал внутреннее перенаправление запроса
37 в модули ngx_http_proxy_module или ngx_http_fastcgi_module, то файл индекса
38 не закрывался после обслуживания запроса.
39 </para>
40 <para lang="en">
41 if a request was internally redirected by the ngx_http_index_module
42 module to the ngx_http_proxy_module or ngx_http_fastcgi_module modules,
43 then the index file was not closed after request completion.
44 </para>
45 </change>
46
47 <change type="feature">
48 <para lang="ru">
49 директива proxy_pass может использоваться в location, заданных регулярным
50 выражением.
51 </para>
52 <para lang="en">
53 the "proxy_pass" can be used in location with regular expression.
54 </para>
55 </change>
56
57 <change type="feature">
58 <para lang="ru">
59 модуль ngx_http_rewrite_filter_module поддерживает условия вида
60 "if ($HTTP_USER_AGENT ~ MSIE)".
61 </para>
62 <para lang="en">
63 the ngx_http_rewrite_filter_module module supports the condition like
64 "if ($HTTP_USER_AGENT ~ MSIE)".
65 </para>
66 </change>
67
68 <change type="bugfix">
69 <para lang="ru">
70 nginx очень медленно запускался при большом количестве адресов и
71 использовании текстовых значений в директиве geo.
72 </para>
73 <para lang="en">
74 nginx started too slow if the large number of addresses and text values
75 were used in the "geo" directive.
76 </para>
77 </change>
78
79 <change type="change">
80 <para lang="ru">
81 имя переменной в директиве geo нужно указывать, как $name.
82 Прежний вариант без "$" пока работает, но вскоре будет убран.
83 </para>
84 <para lang="en">
85 a variable name must be declared as "$name" in the "geo" directive.
86 The previous variant without "$" is still supported, but will be removed soon.
87 </para>
88 </change>
89
90 <change type="feature">
91 <para lang="ru">
92 параметр лога "%{VARIABLE}v".
93 </para>
94 <para lang="en">
95 the "%{VARIABLE}v" logging parameter.
96 </para>
97 </change>
98
99 <change type="feature">
100 <para lang="ru">
101 директива "set $name value".
102 </para>
103 <para lang="en">
104 the "set $name value" directive.
105 </para>
106 </change>
107
108 <change type="bugfix">
109 <para lang="ru">
110 совместимость с gcc 4.0.
111 </para>
112 <para lang="en">
113 gcc 4.0 compatibility.
114 </para>
115 </change>
116
117 <change type="feature">
118 <para lang="ru">
119 параметр автоконфигурации --with-openssl-opt=OPTIONS.
120 </para>
121 <para lang="en">
122 the --with-openssl-opt=OPTIONS autoconfiguration directive.
123 </para>
124 </change>
125
126 </changes>
10 127
11 128
12 <changes ver="0.1.24" date="04.03.2005"> 129 <changes ver="0.1.24" date="04.03.2005">
13 130
14 <change type="feature"> 131 <change type="feature">