view src/http/ngx_http_modules.c @ 13:2aba961a1d34

nginx-0.0.1-2002-09-16-19:01:44 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 16 Sep 2002 15:01:44 +0000
parents 4f3879d9b6f6
children 77c7629a2627
line wrap: on
line source


#include <ngx_http.h>

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_write_filter_module,
    &ngx_http_output_filter_module,
    &ngx_http_core_module,
    &ngx_http_index_module,
    NULL
};