comparison auto/modules @ 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 7ca9bdc82b3f
children a39d1b793287
comparison
equal deleted inserted replaced
33:27f09a550803 34:aab2ea7c0458
114 have=NGX_HTTP_STATUS . auto/have 114 have=NGX_HTTP_STATUS . auto/have
115 HTTP_MODULES="$HTTP_MODULES $HTTP_STATUS_MODULE" 115 HTTP_MODULES="$HTTP_MODULES $HTTP_STATUS_MODULE"
116 HTTP_SRCS="$HTTP_SRCS $HTTP_STATUS_SRCS" 116 HTTP_SRCS="$HTTP_SRCS $HTTP_STATUS_SRCS"
117 fi 117 fi
118 118
119 if [ $HTTP_GEO = YES ]; then
120 have=NGX_HTTP_GEO . auto/have
121 HTTP_MODULES="$HTTP_MODULES $HTTP_GEO_MODULE"
122 HTTP_SRCS="$HTTP_SRCS $HTTP_GEO_SRCS"
123 fi
124
119 if [ $HTTP_REWRITE = YES -a $USE_PCRE != DISABLED ]; then 125 if [ $HTTP_REWRITE = YES -a $USE_PCRE != DISABLED ]; then
120 have=NGX_HTTP_REWRITE . auto/have 126 have=NGX_HTTP_REWRITE . auto/have
121 USE_PCRE=YES 127 USE_PCRE=YES
122 HTTP_MODULES="$HTTP_MODULES $HTTP_REWRITE_MODULE" 128 HTTP_MODULES="$HTTP_MODULES $HTTP_REWRITE_MODULE"
123 HTTP_SRCS="$HTTP_SRCS $HTTP_REWRITE_SRCS" 129 HTTP_SRCS="$HTTP_SRCS $HTTP_REWRITE_SRCS"