comparison src/http/modules/ngx_http_proxy_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 371c1cee100d
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
293 ngx_module_t ngx_http_proxy_module = { 293 ngx_module_t ngx_http_proxy_module = {
294 NGX_MODULE_V1, 294 NGX_MODULE_V1,
295 &ngx_http_proxy_module_ctx, /* module context */ 295 &ngx_http_proxy_module_ctx, /* module context */
296 ngx_http_proxy_commands, /* module directives */ 296 ngx_http_proxy_commands, /* module directives */
297 NGX_HTTP_MODULE, /* module type */ 297 NGX_HTTP_MODULE, /* module type */
298 NULL, /* init master */
298 NULL, /* init module */ 299 NULL, /* init module */
299 NULL /* init process */ 300 NULL, /* init process */
301 NULL, /* init thread */
302 NULL, /* exit thread */
303 NULL, /* exit process */
304 NULL, /* exit master */
305 NGX_MODULE_V1_PADDING
300 }; 306 };
301 307
302 308
303 static ngx_str_t ngx_http_proxy_methods[] = { 309 static ngx_str_t ngx_http_proxy_methods[] = {
304 ngx_string("GET "), 310 ngx_string("GET "),