comparison src/core/ngx_conf_file.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 dadfa78d2270
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
29 ngx_module_t ngx_conf_module = { 29 ngx_module_t ngx_conf_module = {
30 NGX_MODULE_V1, 30 NGX_MODULE_V1,
31 NULL, /* module context */ 31 NULL, /* module context */
32 ngx_conf_commands, /* module directives */ 32 ngx_conf_commands, /* module directives */
33 NGX_CONF_MODULE, /* module type */ 33 NGX_CONF_MODULE, /* module type */
34 NULL, /* init master */
34 NULL, /* init module */ 35 NULL, /* init module */
35 NULL /* init process */ 36 NULL, /* init process */
37 NULL, /* init thread */
38 NULL, /* exit thread */
39 NULL, /* exit process */
40 NULL, /* exit master */
41 NGX_MODULE_V1_PADDING
36 }; 42 };
37 43
38 44
39 /* The ten fixed arguments */ 45 /* The ten fixed arguments */
40 46