view src/core/ngx_modules.c @ 40:d5d4f3bba6f0

nginx-0.0.1-2002-12-26-10:24:21 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 26 Dec 2002 07:24:21 +0000
parents src/http/ngx_http_modules.c@53cb81681040
children 59e7c7f30d49
line wrap: on
line source


#include <ngx_http.h>

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
};