comparison src/http/modules/ngx_http_fastcgi_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 962c43960644
children ca4f70b3ccc6
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
328 ngx_module_t ngx_http_fastcgi_module = { 328 ngx_module_t ngx_http_fastcgi_module = {
329 NGX_MODULE_V1, 329 NGX_MODULE_V1,
330 &ngx_http_fastcgi_module_ctx, /* module context */ 330 &ngx_http_fastcgi_module_ctx, /* module context */
331 ngx_http_fastcgi_commands, /* module directives */ 331 ngx_http_fastcgi_commands, /* module directives */
332 NGX_HTTP_MODULE, /* module type */ 332 NGX_HTTP_MODULE, /* module type */
333 NULL, /* init master */
333 NULL, /* init module */ 334 NULL, /* init module */
334 NULL /* init process */ 335 NULL, /* init process */
336 NULL, /* init thread */
337 NULL, /* exit thread */
338 NULL, /* exit process */
339 NULL, /* exit master */
340 NGX_MODULE_V1_PADDING
335 }; 341 };
336 342
337 343
338 static ngx_int_t 344 static ngx_int_t
339 ngx_http_fastcgi_handler(ngx_http_request_t *r) 345 ngx_http_fastcgi_handler(ngx_http_request_t *r)