view src/http/ngx_http_modules.c @ 38:2ffaa35fba42

nginx-0.0.1-2002-12-24-10:09:57 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 24 Dec 2002 07:09:57 +0000
parents 53cb81681040
children
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
};