comparison src/http/modules/ngx_http_auth_basic_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 371c1cee100d
children 326634fb9d47
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
77 ngx_module_t ngx_http_auth_basic_module = { 77 ngx_module_t ngx_http_auth_basic_module = {
78 NGX_MODULE_V1, 78 NGX_MODULE_V1,
79 &ngx_http_auth_basic_module_ctx, /* module context */ 79 &ngx_http_auth_basic_module_ctx, /* module context */
80 ngx_http_auth_basic_commands, /* module directives */ 80 ngx_http_auth_basic_commands, /* module directives */
81 NGX_HTTP_MODULE, /* module type */ 81 NGX_HTTP_MODULE, /* module type */
82 NULL, /* init master */
82 ngx_http_auth_basic_init, /* init module */ 83 ngx_http_auth_basic_init, /* init module */
83 NULL /* init process */ 84 NULL, /* init process */
85 NULL, /* init thread */
86 NULL, /* exit thread */
87 NULL, /* exit process */
88 NULL, /* exit master */
89 NGX_MODULE_V1_PADDING
84 }; 90 };
85 91
86 92
87 static ngx_int_t 93 static ngx_int_t
88 ngx_http_auth_basic_handler(ngx_http_request_t *r) 94 ngx_http_auth_basic_handler(ngx_http_request_t *r)