Changeset 581455
- Timestamp:
- 07/19/08 10:32:05 (4 years ago)
- Branches:
- master-v0.7, nginx-v0.7, nginx-v0.8, upstream_count_limit
- Children:
- 46d3eb
- Parents:
- aeeac8
- git-author:
- Tomash Brechko <tomash.brechko@…> (07/19/08 10:32:05)
- git-committer:
- Tomash Brechko <tomash.brechko@…> (07/19/08 10:32:05)
- Location:
- server
- Files:
-
- 9 edited
-
CHANGES (modified) (1 diff)
-
CHANGES.ru (modified) (1 diff)
-
src/core/nginx.h (modified) (1 diff)
-
src/http/modules/ngx_http_log_module.c (modified) (3 diffs)
-
src/http/modules/ngx_http_ssi_filter_module.c (modified) (1 diff)
-
src/http/modules/ngx_http_sub_filter_module.c (modified) (1 diff)
-
src/http/modules/perl/nginx.pm (modified) (1 diff)
-
src/http/ngx_http_header_filter_module.c (modified) (2 diffs)
-
src/http/ngx_http_request.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
server/CHANGES
raeeac8 r581455 1 2 Changes with nginx 0.7.5 01 Jul 2008 3 4 *) Bugfixes in variables support in the "access_log" directive; the bug 5 had appeared in 0.7.4. 6 7 *) Bugfix: nginx could not be built --without-http_gzip_module; the bug 8 had appeared in 0.7.3. 9 Thanks to Kirill A. Korinskiy. 10 11 *) Bugfix: if sub_filter and SSI were used together, then responses 12 might were transferred incorrectly. 13 1 14 2 15 Changes with nginx 0.7.4 30 Jun 2008 -
server/CHANGES.ru
raeeac8 r581455 1 2 éÚÍÅÎÅÎÉÑ × nginx 0.7.5 01.07.2008 3 4 *) éÓÐÒÁ×ÌÅÎÉÑ × ÐÏÄÄÅÒÖËÅ ÐÅÒÅÍÅÎÎÙÈ × ÄÉÒÅËÔÉ×Å access_log; ÏÛÉÂËÁ 5 ÐÏÑ×ÉÌÁÓØ × 0.7.4. 6 7 *) éÓÐÒÁ×ÌÅÎÉÅ: nginx ÎÅ ÓÏÂÉÒÁÌÓÑ Ó ÐÁÒÁÍÅÔÒÏÍ 8 --without-http_gzip_module; ÏÛÉÂËÁ ÐÏÑ×ÉÌÁÓØ × 0.7.3. 9 óÐÁÓÉÂÏ ëÉÒÉÌÌÕ ëÏÒÉÎÓËÏÍÕ. 10 11 *) éÓÐÒÁ×ÌÅÎÉÅ: ÐÒÉ ÓÏ×ÍÅÓÔÎÏÍ ÉÓÐÏÌØÚÏ×ÁÎÉÉ sub_filter É SSI ÏÔ×ÅÔÙ 12 ÍÏÇÌÉ ÐÅÒÅÄÁ×ÁÔØÓÑ ÎÅ×ÅÒÎÏ. 13 1 14 2 15 éÚÍÅÎÅÎÉÑ × nginx 0.7.4 30.06.2008 -
server/src/core/nginx.h
raeeac8 r581455 9 9 10 10 11 #define NGINX_VERSION "0.7. 4"11 #define NGINX_VERSION "0.7.5" 12 12 #define NGINX_VER "nginx/" NGINX_VERSION 13 13 -
server/src/http/modules/ngx_http_log_module.c
raeeac8 r581455 423 423 ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno, 424 424 ngx_open_file_n " \"%s\" failed", log.data); 425 return -1; 425 /* simulate successfull logging */ 426 return len; 426 427 } 427 428 … … 761 762 } 762 763 763 *conf = *prev; 764 conf->logs = prev->logs; 765 conf->off = prev->off; 764 766 765 767 if (conf->logs || conf->off) { … … 782 784 } 783 785 786 log->script = NULL; 784 787 log->disk_full_time = 0; 785 788 log->error_log_time = 0; -
server/src/http/modules/ngx_http_ssi_filter_module.c
r604d5c r581455 559 559 if (slcf->min_file_chunk < (size_t) (b->last - b->pos)) 560 560 { 561 b->file_last = b->file_pos + (b->last - b->start); 562 b->file_pos += b->pos - b->start; 561 b->file_last = b->file_pos 562 + (b->last - ctx->buf->pos); 563 b->file_pos += b->pos - ctx->buf->pos; 563 564 564 565 } else { -
server/src/http/modules/ngx_http_sub_filter_module.c
r604d5c r581455 323 323 324 324 if (b->in_file) { 325 b->file_last = b->file_pos + (b->last - b->start);326 b->file_pos += b->pos - b->start;325 b->file_last = b->file_pos + (b->last - ctx->buf->pos); 326 b->file_pos += b->pos - ctx->buf->pos; 327 327 } 328 328 -
server/src/http/modules/perl/nginx.pm
raeeac8 r581455 48 48 ); 49 49 50 our $VERSION = '0.7. 4';50 our $VERSION = '0.7.5'; 51 51 52 52 require XSLoader; -
server/src/http/ngx_http_header_filter_module.c
r604d5c r581455 348 348 } 349 349 350 #if (NGX_HTTP_GZIP) 350 351 if (r->gzip && clcf->gzip_vary) { 351 352 len += sizeof("Vary: Accept-Encoding" CRLF) - 1; 352 353 } 354 #endif 353 355 354 356 part = &r->headers_out.headers.part; … … 521 523 } 522 524 525 #if (NGX_HTTP_GZIP) 523 526 if (r->gzip && clcf->gzip_vary) { 524 527 b->last = ngx_cpymem(b->last, "Vary: Accept-Encoding" CRLF, 525 528 sizeof("Vary: Accept-Encoding" CRLF) - 1); 526 529 } 530 #endif 527 531 528 532 part = &r->headers_out.headers.part; -
server/src/http/ngx_http_request.c
raeeac8 r581455 2624 2624 } 2625 2625 2626 log->action = "logging request"; 2627 2626 2628 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module); 2627 2629 … … 2631 2633 log_handler[i](r); 2632 2634 } 2635 2636 log->action = "closing request"; 2633 2637 2634 2638 if (r->connection->timedout) {
Note: See TracChangeset
for help on using the changeset viewer.
