comparison docs/xml/nginx/changes.xml @ 481:fd661d14a7fa release-0.1.15

nginx-0.1.15-RELEASE import *) Bugfix: the error while the connecting to the FastCGI server caused segmentation fault. *) Bugfix: the correct handling of the regular expression, that has different number of the captures and substitutions. *) Feature: the location, that is passed to the FastCGI server, can be regular expression. *) Bugfix: the FastCGI's parameter REQUEST_URI is now passed with the arguments and in the original state. *) Bugfix: the ngx_http_rewrite_module module was required to be built to use the regular expressions in locations. *) Bugfix: the directive "proxy_preserve_host on" adds port 80 to the "Host" headers, if upstream listen on port 80; the bug had appeared in 0.1.14. *) Bugfix: the same paths in autoconfiguration parameters --http-client-body-temp-path=PATH and --http-proxy-temp-path=PATH, or --http-client-body-temp-path=PATH and --http-fastcgi-temp-path=PATH caused segmentation fault.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 19 Jan 2005 13:10:56 +0000
parents c52408583801
children 621229427cba
comparison
equal deleted inserted replaced
480:4d5a5478ceda 481:fd661d14a7fa
2 <!DOCTYPE change_log SYSTEM "../../dtd/changes.dtd" > 2 <!DOCTYPE change_log SYSTEM "../../dtd/changes.dtd" >
3 3
4 4
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
8
9 <changes ver="0.1.15" date="19.01.2005">
10
11 <change type="bugfix">
12 <para lang="ru">
13 ошибка соединения с FastCGI-сервером вызывала segmentation fault.
14 </para>
15 <para lang="en">
16 the error while the connecting to the FastCGI server caused
17 segmentation fault.
18 </para>
19 </change>
20
21 <change type="bugfix">
22 <para lang="ru">
23 корректная обработка регулярного выражения, в котором число
24 выделенных частей не совпадает с числом подстановок.
25 </para>
26 <para lang="en">
27 the correct handling of the regular exporession, that
28 has different number of the captures and substitutions.
29 </para>
30 </change>
31
32 <change type="feature">
33 <para lang="ru">
34 location, который передаётся FastCGI-серверу, может быть задан
35 с помощью регулярного выражения.
36 </para>
37 <para lang="en">
38 the location, that is passed to the FastCGI server, can be
39 regualar expression.
40 </para>
41 </change>
42
43 <change type="bugfix">
44 <para lang="ru">
45 параметр FastCGI REQUEST_URI теперь передаётся вместе с аргументами
46 и в том виде, в котором был получен от клиента.
47 </para>
48 <para lang="en">
49 the FastCGI's parameter REQUEST_URI is now passed with the arguments
50 and in the original state.
51 </para>
52 </change>
53
54 <change type="bugfix">
55 <para lang="ru">
56 для использования регулярных выражений в location нужно было
57 собирать nginx вместе с ngx_http_rewrite_module.
58 </para>
59 <para lang="en">
60 the ngx_http_rewrite_module module was required to be built to use
61 the regular expressions in locations.
62 </para>
63 </change>
64
65 <change type="bugfix">
66 <para lang="ru">
67 если бэкенд слушал на 80-ом порту, то при использовании директивы
68 <nobr>"proxy_preserve_host on"</nobr> в заголовке "Host" указывался
69 также порт 80;
70 ошибка появилась в 0.1.14.
71 </para>
72 <para lang="en">
73 the directive <nobr>"proxy_preserve_host on"</nobr> adds port 80
74 to the "Host" headers, if upstream listen on port 80;
75 bug appeared in 0.1.14.
76 </para>
77 </change>
78
79 <change type="bugfix">
80 <para lang="ru">
81 если задать одинаковые пути в параметрах автоконфигурации
82 --http-client-body-temp-path=PATH и --http-proxy-temp-path=PATH
83 или --http-client-body-temp-path=PATH и --http-fastcgi-temp-path=PATH,
84 то происходил segmentation fault.
85 </para>
86 <para lang="en">
87 the same pathes in autoconfiguration paramters
88 --http-client-body-temp-path=PATH and --http-proxy-temp-path=PATH,
89 or --http-client-body-temp-path=PATH nad --http-fastcgi-temp-path=PATH
90 caused segmentation fault.
91 </para>
92 </change>
93
94 </changes>
7 95
8 96
9 <changes ver="0.1.14" date="18.01.2005"> 97 <changes ver="0.1.14" date="18.01.2005">
10 98
11 <change type="feature"> 99 <change type="feature">