diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-06-02 15:24:30 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-06-02 15:24:30 +0000 |
commit | 7578ec9df43bbb31db5291f1b76359d10900a679 (patch) | |
tree | 87d7b3cb729c0e07b21d52737fd76e12a0c17d72 /src/core/ngx_modules.c | |
parent | aa3436c04c222d57498bfa34c9fdec50f07fd08d (diff) | |
download | nginx-7578ec9df43bbb31db5291f1b76359d10900a679.tar.gz nginx-7578ec9df43bbb31db5291f1b76359d10900a679.zip |
nginx-0.0.1-2003-06-02-19:24:30 import
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r-- | src/core/ngx_modules.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c index 8f57db399..27d150cd2 100644 --- a/src/core/ngx_modules.c +++ b/src/core/ngx_modules.c @@ -29,10 +29,16 @@ extern ngx_module_t ngx_http_write_filter_module; extern ngx_module_t ngx_http_output_filter_module; extern ngx_module_t ngx_http_header_filter_module; +extern ngx_module_t ngx_http_chunked_filter_module; +extern ngx_module_t ngx_http_range_filter_module; +extern ngx_module_t ngx_http_charset_filter_module; + extern ngx_module_t ngx_http_index_module; extern ngx_module_t ngx_http_static_module; extern ngx_module_t ngx_http_proxy_module; +extern ngx_module_t ngx_http_log_module; + ngx_module_t *ngx_modules[] = { @@ -64,13 +70,17 @@ ngx_module_t *ngx_modules[] = { &ngx_http_output_filter_module, &ngx_http_header_filter_module, + &ngx_http_chunked_filter_module, /* &ngx_http_gzip_filter_module, */ - /* &ngx_http_range_filter_module, */ + &ngx_http_range_filter_module, /* &ngx_http_ssi_filter_module, */ + &ngx_http_charset_filter_module, &ngx_http_index_module, /* &ngx_http_static_module, */ /* &ngx_http_proxy_module, */ + &ngx_http_log_module, + NULL }; |