comparison src/http/modules/ngx_http_index_module.c @ 90:71c46860eb55 NGINX_0_1_45

nginx 0.1.45 *) 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 <http://sysoev.ru>
date Thu, 08 Sep 2005 00:00:00 +0400
parents b55cbf18157e
children 45f7329b4bd0
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
94 ngx_module_t ngx_http_index_module = { 94 ngx_module_t ngx_http_index_module = {
95 NGX_MODULE_V1, 95 NGX_MODULE_V1,
96 &ngx_http_index_module_ctx, /* module context */ 96 &ngx_http_index_module_ctx, /* module context */
97 ngx_http_index_commands, /* module directives */ 97 ngx_http_index_commands, /* module directives */
98 NGX_HTTP_MODULE, /* module type */ 98 NGX_HTTP_MODULE, /* module type */
99 NULL, /* init master */
99 ngx_http_index_init, /* init module */ 100 ngx_http_index_init, /* init module */
100 NULL /* init process */ 101 NULL, /* init process */
102 NULL, /* init thread */
103 NULL, /* exit thread */
104 NULL, /* exit process */
105 NULL, /* exit master */
106 NGX_MODULE_V1_PADDING
101 }; 107 };
102 108
103 109
104 /* 110 /*
105 * Try to open the first index file before the test of the directory existence 111 * Try to open the first index file before the test of the directory existence