comparison auto/sources @ 34:aab2ea7c0458 NGINX_0_1_17

nginx 0.1.17 *) Change: the ngx_http_rewrite_module was rewritten from the scratch. Now it is possible to redirect, to return the error codes, to check the variables and referrers. The directives can be used inside locations. The redirect directive was canceled. *) Feature: the ngx_http_geo_module. *) Feature: the proxy_set_x_var and fastcgi_set_var directives. *) Bugfix: the location configuration with "=" modifier may be used in another location. *) Bugfix: the correct content type was set only for requests that use small caps letters in extension. *) Bugfix: if the proxy_pass or fastcgi_pass directives were set in the location, and access was denied, and the error was redirected to a static page, then the segmentation fault occurred. *) Bugfix: if in a proxied "Location" header was a relative URL, then a host name and a slash were added to them; bug appeared in 0.1.14. *) Bugfix: the system error message was not logged on Linux.
author Igor Sysoev <http://sysoev.ru>
date Thu, 03 Feb 2005 00:00:00 +0300
parents da8c190bdaba
children 6cfc63e68377
comparison
equal deleted inserted replaced
33:27f09a550803 34:aab2ea7c0458
19 src/core/ngx_parse.h \ 19 src/core/ngx_parse.h \
20 src/core/ngx_inet.h \ 20 src/core/ngx_inet.h \
21 src/core/ngx_file.h \ 21 src/core/ngx_file.h \
22 src/core/ngx_crc.h \ 22 src/core/ngx_crc.h \
23 src/core/ngx_rbtree.h \ 23 src/core/ngx_rbtree.h \
24 src/core/ngx_radix_tree.h \
24 src/core/ngx_times.h \ 25 src/core/ngx_times.h \
25 src/core/ngx_connection.h \ 26 src/core/ngx_connection.h \
26 src/core/ngx_cycle.h \ 27 src/core/ngx_cycle.h \
27 src/core/ngx_conf_file.h \ 28 src/core/ngx_conf_file.h \
28 src/core/ngx_garbage_collector.h" 29 src/core/ngx_garbage_collector.h"
29 30
30 # src/core/ngx_radix_tree.h \
31 # src/core/ngx_radix_tree.c \
32 31
33 CORE_SRCS="src/core/nginx.c \ 32 CORE_SRCS="src/core/nginx.c \
34 src/core/ngx_log.c \ 33 src/core/ngx_log.c \
35 src/core/ngx_palloc.c \ 34 src/core/ngx_palloc.c \
36 src/core/ngx_array.c \ 35 src/core/ngx_array.c \
40 src/core/ngx_string.c \ 39 src/core/ngx_string.c \
41 src/core/ngx_parse.c \ 40 src/core/ngx_parse.c \
42 src/core/ngx_inet.c \ 41 src/core/ngx_inet.c \
43 src/core/ngx_file.c \ 42 src/core/ngx_file.c \
44 src/core/ngx_rbtree.c \ 43 src/core/ngx_rbtree.c \
44 src/core/ngx_radix_tree.c \
45 src/core/ngx_times.c \ 45 src/core/ngx_times.c \
46 src/core/ngx_connection.c \ 46 src/core/ngx_connection.c \
47 src/core/ngx_cycle.c \ 47 src/core/ngx_cycle.c \
48 src/core/ngx_spinlock.c \ 48 src/core/ngx_spinlock.c \
49 src/core/ngx_conf_file.c \ 49 src/core/ngx_conf_file.c \
294 294
295 HTTP_STATUS_MODULE=ngx_http_status_module 295 HTTP_STATUS_MODULE=ngx_http_status_module
296 HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_handler.c 296 HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_handler.c
297 297
298 298
299 HTTP_GEO_MODULE=ngx_http_geo_module
300 HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c
301
302
299 HTTP_REWRITE_MODULE=ngx_http_rewrite_module 303 HTTP_REWRITE_MODULE=ngx_http_rewrite_module
300 HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c 304 HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c
301 305
302 306
303 HTTP_SSL_MODULE=ngx_http_ssl_module 307 HTTP_SSL_MODULE=ngx_http_ssl_module