comparison 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
comparison
equal deleted inserted replaced
12:055ed05235ae 13:2aba961a1d34
1 1
2 #include <ngx_http.h> 2 #include <ngx_http.h>
3 3
4 extern ngx_http_module_t ngx_http_write_filter_module;
4 extern ngx_http_module_t ngx_http_output_filter_module; 5 extern ngx_http_module_t ngx_http_output_filter_module;
5 extern ngx_http_module_t ngx_http_write_filter_module; 6 extern ngx_http_module_t ngx_http_core_module;
6 extern ngx_http_module_t ngx_http_index_module; 7 extern ngx_http_module_t ngx_http_index_module;
7 8
8 ngx_http_module_t *ngx_http_modules[] = { 9 ngx_http_module_t *ngx_http_modules[] = {
9 &ngx_http_write_filter_module, 10 &ngx_http_write_filter_module,
10 &ngx_http_output_filter_module, 11 &ngx_http_output_filter_module,
12 &ngx_http_core_module,
11 &ngx_http_index_module, 13 &ngx_http_index_module,
12 NULL 14 NULL
13 }; 15 };