comparison src/http/modules/ngx_http_ssi_filter_module.h @ 158:2d15b82126ed NGINX_0_3_26

nginx 0.3.26 *) Change: the "optimize_host_names" directive was renamed to the "optimize_server_names". *) Bugfix: if in the "proxy_pass" directive was no the URI part, then the main request URI was transferred to a backend while proxying the SSI subrequest.
author Igor Sysoev <http://sysoev.ru>
date Fri, 03 Feb 2006 00:00:00 +0300
parents 36af50a5582d
children 87699398f955
comparison
equal deleted inserted replaced
157:10bd259db2a7 158:2d15b82126ed
13 #include <ngx_http.h> 13 #include <ngx_http.h>
14 14
15 15
16 #define NGX_HTTP_SSI_MAX_PARAMS 16 16 #define NGX_HTTP_SSI_MAX_PARAMS 16
17 17
18 #define NGX_HTTP_SSI_COMMAND_LEN 31 18 #define NGX_HTTP_SSI_COMMAND_LEN 32
19 #define NGX_HTTP_SSI_PARAM_LEN 31 19 #define NGX_HTTP_SSI_PARAM_LEN 32
20 #define NGX_HTTP_SSI_PARAMS_N 4 20 #define NGX_HTTP_SSI_PARAMS_N 4
21 21
22 22
23 typedef struct { 23 typedef struct {
24 ngx_hash_t hash; 24 ngx_hash_t hash;
54 54
55 ngx_array_t variables; 55 ngx_array_t variables;
56 56
57 ngx_uint_t output; /* unsigned output:1; */ 57 ngx_uint_t output; /* unsigned output:1; */
58 58
59 void *value_buf;
59 ngx_str_t timefmt; 60 ngx_str_t timefmt;
60 ngx_str_t errmsg; 61 ngx_str_t errmsg;
61 } ngx_http_ssi_ctx_t; 62 } ngx_http_ssi_ctx_t;
62 63
63 64