diff options
author | Igor Sysoev <igor@sysoev.ru> | 2002-09-16 15:01:44 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2002-09-16 15:01:44 +0000 |
commit | 682bf8e9c04fbe2fc9548985cdec173b6a9dcb27 (patch) | |
tree | abca656ec5a3ca157b3fb37670285d49dd0800cc /src/http/ngx_http_modules.c | |
parent | 1af7c82f7cde36d3813ee8f5dd45f8b03f5ad66c (diff) | |
download | nginx-682bf8e9c04fbe2fc9548985cdec173b6a9dcb27.tar.gz nginx-682bf8e9c04fbe2fc9548985cdec173b6a9dcb27.zip |
nginx-0.0.1-2002-09-16-19:01:44 import
Diffstat (limited to 'src/http/ngx_http_modules.c')
-rw-r--r-- | src/http/ngx_http_modules.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/http/ngx_http_modules.c b/src/http/ngx_http_modules.c index 922b28e59..9676a0ffb 100644 --- a/src/http/ngx_http_modules.c +++ b/src/http/ngx_http_modules.c @@ -1,13 +1,15 @@ #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_output_filter_module; +extern ngx_http_module_t ngx_http_core_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_core_module, &ngx_http_index_module, NULL }; |