From e0268b95c6dea75f88d3874213b1aa0cd0aba692 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 11 Sep 2002 15:18:33 +0000 Subject: nginx-0.0.1-2002-09-11-19:18:33 import --- src/http/ngx_http_modules.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/http/ngx_http_modules.c') diff --git a/src/http/ngx_http_modules.c b/src/http/ngx_http_modules.c index ca1f4ac84..922b28e59 100644 --- a/src/http/ngx_http_modules.c +++ b/src/http/ngx_http_modules.c @@ -1,7 +1,13 @@ +#include + extern ngx_http_module_t ngx_http_output_filter_module; +extern ngx_http_module_t ngx_http_write_filter_module; +extern ngx_http_module_t ngx_http_index_module; ngx_http_module_t *ngx_http_modules[] = { - ngx_http_output_filter_module, + &ngx_http_write_filter_module, + &ngx_http_output_filter_module, + &ngx_http_index_module, NULL }; -- cgit