comparison src/http/ngx_http.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 2019117e6b38
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
55 ngx_module_t ngx_http_module = { 55 ngx_module_t ngx_http_module = {
56 NGX_MODULE_V1, 56 NGX_MODULE_V1,
57 &ngx_http_module_ctx, /* module context */ 57 &ngx_http_module_ctx, /* module context */
58 ngx_http_commands, /* module directives */ 58 ngx_http_commands, /* module directives */
59 NGX_CORE_MODULE, /* module type */ 59 NGX_CORE_MODULE, /* module type */
60 NULL, /* init master */
60 NULL, /* init module */ 61 NULL, /* init module */
61 NULL /* init process */ 62 NULL, /* init process */
63 NULL, /* init thread */
64 NULL, /* exit thread */
65 NULL, /* exit process */
66 NULL, /* exit master */
67 NGX_MODULE_V1_PADDING
62 }; 68 };
63 69
64 70
65 static char * 71 static char *
66 ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) 72 ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)