comparison src/http/modules/ngx_http_geo_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 818fbd4750b9
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
51 ngx_module_t ngx_http_geo_module = { 51 ngx_module_t ngx_http_geo_module = {
52 NGX_MODULE_V1, 52 NGX_MODULE_V1,
53 &ngx_http_geo_module_ctx, /* module context */ 53 &ngx_http_geo_module_ctx, /* module context */
54 ngx_http_geo_commands, /* module directives */ 54 ngx_http_geo_commands, /* module directives */
55 NGX_HTTP_MODULE, /* module type */ 55 NGX_HTTP_MODULE, /* module type */
56 NULL, /* init master */
56 NULL, /* init module */ 57 NULL, /* init module */
57 NULL /* init process */ 58 NULL, /* init process */
59 NULL, /* init thread */
60 NULL, /* exit thread */
61 NULL, /* exit process */
62 NULL, /* exit master */
63 NGX_MODULE_V1_PADDING
58 }; 64 };
59 65
60 66
61 static ngx_http_variable_value_t ngx_http_geo_null_value = 67 static ngx_http_variable_value_t ngx_http_geo_null_value =
62 { 0, ngx_string("0") }; 68 { 0, ngx_string("0") };