comparison src/http/modules/ngx_http_autoindex_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 9db7e0b5b27f
children 45945fa8b8ba
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
97 ngx_module_t ngx_http_autoindex_module = { 97 ngx_module_t ngx_http_autoindex_module = {
98 NGX_MODULE_V1, 98 NGX_MODULE_V1,
99 &ngx_http_autoindex_module_ctx, /* module context */ 99 &ngx_http_autoindex_module_ctx, /* module context */
100 ngx_http_autoindex_commands, /* module directives */ 100 ngx_http_autoindex_commands, /* module directives */
101 NGX_HTTP_MODULE, /* module type */ 101 NGX_HTTP_MODULE, /* module type */
102 NULL, /* init master */
102 ngx_http_autoindex_init, /* init module */ 103 ngx_http_autoindex_init, /* init module */
103 NULL /* init process */ 104 NULL, /* init process */
105 NULL, /* init thread */
106 NULL, /* exit thread */
107 NULL, /* exit process */
108 NULL, /* exit master */
109 NGX_MODULE_V1_PADDING
104 }; 110 };
105 111
106 112
107 static u_char title[] = 113 static u_char title[] =
108 "<html>" CRLF 114 "<html>" CRLF