diff 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 diff
--- a/src/http/ngx_http_modules.c
+++ b/src/http/ngx_http_modules.c
@@ -1,7 +1,13 @@
+
+#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_output_filter_module,
+    &ngx_http_write_filter_module,
+    &ngx_http_output_filter_module,
+    &ngx_http_index_module,
     NULL
 };