comparison src/http/modules/ngx_http_access_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 d25a1d6034f1
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
71 ngx_module_t ngx_http_access_module = { 71 ngx_module_t ngx_http_access_module = {
72 NGX_MODULE_V1, 72 NGX_MODULE_V1,
73 &ngx_http_access_module_ctx, /* module context */ 73 &ngx_http_access_module_ctx, /* module context */
74 ngx_http_access_commands, /* module directives */ 74 ngx_http_access_commands, /* module directives */
75 NGX_HTTP_MODULE, /* module type */ 75 NGX_HTTP_MODULE, /* module type */
76 NULL, /* init master */
76 ngx_http_access_init, /* init module */ 77 ngx_http_access_init, /* init module */
77 NULL /* init process */ 78 NULL, /* init process */
79 NULL, /* init thread */
80 NULL, /* exit thread */
81 NULL, /* exit process */
82 NULL, /* exit master */
83 NGX_MODULE_V1_PADDING
78 }; 84 };
79 85
80 86
81 static ngx_int_t 87 static ngx_int_t
82 ngx_http_access_handler(ngx_http_request_t *r) 88 ngx_http_access_handler(ngx_http_request_t *r)