aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_modules.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/ngx_http_modules.c')
-rw-r--r--src/http/ngx_http_modules.c4
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
};