comparison src/http/modules/ngx_http_index_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 9b8c906f6e63
children ecd9c160f25b
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
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