view src/http/ngx_http_modules.c @ 17:8dd06e2844f5

nginx-0.0.1-2002-09-27-19:05:29 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 27 Sep 2002 15:05:29 +0000
parents 2aba961a1d34
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
};