comparison src/http/ngx_http_log_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 408f195b3482
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
123 ngx_module_t ngx_http_log_module = { 123 ngx_module_t ngx_http_log_module = {
124 NGX_MODULE_V1, 124 NGX_MODULE_V1,
125 &ngx_http_log_module_ctx, /* module context */ 125 &ngx_http_log_module_ctx, /* module context */
126 ngx_http_log_commands, /* module directives */ 126 ngx_http_log_commands, /* module directives */
127 NGX_HTTP_MODULE, /* module type */ 127 NGX_HTTP_MODULE, /* module type */
128 NULL, /* init master */
128 NULL, /* init module */ 129 NULL, /* init module */
129 NULL /* init process */ 130 NULL, /* init process */
131 NULL, /* init thread */
132 NULL, /* exit thread */
133 NULL, /* exit process */
134 NULL, /* exit master */
135 NGX_MODULE_V1_PADDING
130 }; 136 };
131 137
132 138
133 static ngx_str_t http_access_log = ngx_string(NGX_HTTP_LOG_PATH); 139 static ngx_str_t http_access_log = ngx_string(NGX_HTTP_LOG_PATH);
134 140