comparison src/http/ngx_http_script.h @ 456:ca8f7f6cab16 NGINX_0_7_40

nginx 0.7.40 *) Feature: the "location" directive supports captures in regular expressions. *) Feature: an "alias" directive with capture references may be used inside a location given by a regular expression with captures. *) Feature: the "server_name" directive supports captures in regular expressions. *) Workaround: the ngx_http_autoindex_module did not show the trailing slash in directories on XFS filesystem; the issue had appeared in 0.7.15. Thanks to Dmitry Kuzmenko.
author Igor Sysoev <http://sysoev.ru>
date Mon, 09 Mar 2009 00:00:00 +0300
parents babd3d9efb62
children c8cfb6c462ef
comparison
equal deleted inserted replaced
455:ead634c4b006 456:ca8f7f6cab16
27 unsigned flushed:1; 27 unsigned flushed:1;
28 unsigned skip:1; 28 unsigned skip:1;
29 unsigned quote:1; 29 unsigned quote:1;
30 unsigned is_args:1; 30 unsigned is_args:1;
31 unsigned log:1; 31 unsigned log:1;
32
33 int *captures;
34 ngx_uint_t ncaptures;
35 32
36 ngx_int_t status; 33 ngx_int_t status;
37 ngx_http_request_t *request; 34 ngx_http_request_t *request;
38 } ngx_http_script_engine_t; 35 } ngx_http_script_engine_t;
39 36