diff options
author | Igor Sysoev <igor@sysoev.ru> | 2002-09-11 15:18:33 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2002-09-11 15:18:33 +0000 |
commit | e0268b95c6dea75f88d3874213b1aa0cd0aba692 (patch) | |
tree | 49f871f82639d76c81618bff00546591bfef37d9 /src/http/ngx_http_modules.c | |
parent | 96f8377fd89b8735027ccfebea8ad9e77f40f51c (diff) | |
download | nginx-e0268b95c6dea75f88d3874213b1aa0cd0aba692.tar.gz nginx-e0268b95c6dea75f88d3874213b1aa0cd0aba692.zip |
nginx-0.0.1-2002-09-11-19:18:33 import
Diffstat (limited to 'src/http/ngx_http_modules.c')
-rw-r--r-- | src/http/ngx_http_modules.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/http/ngx_http_modules.c b/src/http/ngx_http_modules.c index ca1f4ac84..922b28e59 100644 --- 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 }; |