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