From 960ffa42cb161b3769cde9bbf2212092e751dfab Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 26 Dec 2002 07:24:21 +0000 Subject: nginx-0.0.1-2002-12-26-10:24:21 import --- src/core/ngx_modules.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/core/ngx_modules.c (limited to 'src/core/ngx_modules.c') diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c new file mode 100644 index 000000000..5b814baf9 --- /dev/null +++ b/src/core/ngx_modules.c @@ -0,0 +1,23 @@ + +#include + +extern ngx_http_module_t ngx_http_header_filter_module; + +extern ngx_http_module_t ngx_http_write_filter_module; +extern ngx_http_module_t ngx_http_output_filter_module; + +extern ngx_http_module_t ngx_http_core_module; +extern ngx_http_module_t ngx_http_index_module; + +ngx_http_module_t *ngx_http_modules[] = { + + &ngx_http_header_filter_module, + + &ngx_http_write_filter_module, + &ngx_http_output_filter_module, + + &ngx_http_index_module, + &ngx_http_core_module, + + NULL +}; -- cgit v1.2.3