comparison docs/xml/nginx/changes.xml @ 2408:9425d9c7f8ea release-0.7.27

nginx-0.7.27-RELEASE
author Igor Sysoev <igor@sysoev.ru>
date Mon, 15 Dec 2008 11:30:08 +0000
parents d04bfca0c7e3
children fbc3e7e8b3ee
comparison
equal deleted inserted replaced
2407:16d1236bc298 2408:9425d9c7f8ea
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.7.27" date="15.12.2008">
13
14 <change type="feature">
15 <para lang="ru">
16 директива try_files.
17 </para>
18 <para lang="en">
19 the "try_files" directive.
20 </para>
21 </change>
22
23 <change type="feature">
24 <para lang="ru">
25 директива fastcgi_pass поддерживает переменные.
26 </para>
27 <para lang="en">
28 variables support in the "fastcgi_pass" directive.
29 </para>
30 </change>
31
32 <change type="feature">
33 <para lang="ru">
34 теперь директива geo может брать адрес из переменной.<br/>
35 Спасибо Андрею Нигматулину.
36 </para>
37 <para lang="en">
38 now the $geo variable may get an address from a variable.<br/>
39 Thanks to Andrei Nigmatulin.
40 </para>
41 </change>
42
43 <change type="feature">
44 <para lang="ru">
45 теперь модификатор location'а можно указывать без пробела перед названием.
46 </para>
47 <para lang="en">
48 now a location's modifier may be used without space before name.
49 </para>
50 </change>
51
52 <change type="feature">
53 <para lang="ru">
54 переменная $upstream_response_length.
55 </para>
56 <para lang="en">
57 the $upstream_response_length variable.
58 </para>
59 </change>
60
61 <change type="bugfix">
62 <para lang="ru">
63 теперь директива add_header не добавляет пустое значение.
64 </para>
65 <para lang="en">
66 now a "add_header" directive does not add an empty value.
67 </para>
68 </change>
69
70 <change type="bugfix">
71 <para lang="ru">
72 при запросе файла нулевой длины nginx закрывал соединение, ничего не передав;
73 ошибка появилась в 0.7.25.
74 </para>
75 <para lang="en">
76 if zero length static file was requested, then nginx just closed connection;
77 the bug had appeared in 0.7.25.
78 </para>
79 </change>
80
81 <change type="bugfix">
82 <para lang="ru">
83 метод MOVE не мог перемещать файл в несуществующий каталог.
84 </para>
85 <para lang="en">
86 a MOVE method could not move file in non-existent directory.
87 </para>
88 </change>
89
90 <change type="bugfix">
91 <para lang="ru">
92 если в сервере не был описан ни один именованный location,
93 но такой location использовался в директиве error_page,
94 то в рабочем процессе происходил segmentation fault.<br/>
95 Спасибо Сергею Боченкову.
96 </para>
97 <para lang="en">
98 a segmentation fault occurred in worker process,
99 if no one named location was defined in server,
100 but some one was used in an error_page directive.<br/>
101 Thanks to Sergey Bochenkov.
102 </para>
103 </change>
104
105 </changes>
10 106
11 107
12 <changes ver="0.7.26" date="08.12.2008"> 108 <changes ver="0.7.26" date="08.12.2008">
13 109
14 <change type="bugfix"> 110 <change type="bugfix">