comparison src/http/modules/ngx_http_rewrite_module.c @ 541:b09ee85d0ac8 release-0.1.45

nginx-0.1.45-RELEASE import *) Change: the "ssl_engine" directive was canceled in the ngx_http_ssl_module and now is introduced at global level. *) Bugfix: the responses with SSI subrequests did not transferred via SSL connection. *) Various bug fixes in the IMAP/POP3 proxy.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 08 Sep 2005 14:36:09 +0000
parents 7fa11e5c6e96
children 7bd37aef1e7e
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
128 ngx_module_t ngx_http_rewrite_module = { 128 ngx_module_t ngx_http_rewrite_module = {
129 NGX_MODULE_V1, 129 NGX_MODULE_V1,
130 &ngx_http_rewrite_module_ctx, /* module context */ 130 &ngx_http_rewrite_module_ctx, /* module context */
131 ngx_http_rewrite_commands, /* module directives */ 131 ngx_http_rewrite_commands, /* module directives */
132 NGX_HTTP_MODULE, /* module type */ 132 NGX_HTTP_MODULE, /* module type */
133 NULL, /* init master */
133 ngx_http_rewrite_init, /* init module */ 134 ngx_http_rewrite_init, /* init module */
134 NULL /* init process */ 135 NULL, /* init process */
136 NULL, /* init thread */
137 NULL, /* exit thread */
138 NULL, /* exit process */
139 NULL, /* exit master */
140 NGX_MODULE_V1_PADDING
135 }; 141 };
136 142
137 143
138 static ngx_http_variable_value_t ngx_http_rewrite_null_value = 144 static ngx_http_variable_value_t ngx_http_rewrite_null_value =
139 { 0, ngx_string("") }; 145 { 0, ngx_string("") };