view src/http/ngx_http_modules.c @ 10:4f3879d9b6f6

nginx-0.0.1-2002-09-11-19:18:33 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Sep 2002 15:18:33 +0000
parents 6f58641241bb
children 2aba961a1d34
line wrap: on
line source


#include <ngx_http.h>

extern ngx_http_module_t ngx_http_output_filter_module;
extern ngx_http_module_t ngx_http_write_filter_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_index_module,
    NULL
};