comparison src/core/ngx_modules.c @ 90:37530da31268

nginx-0.0.1-2003-05-16-19:27:48 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 16 May 2003 15:27:48 +0000
parents 5f6d848dcbef
children 637625a2acdb
comparison
equal deleted inserted replaced
89:29bf798b583f 90:37530da31268
1 1
2 #include <ngx_config.h> 2 #include <ngx_config.h>
3 3
4 #include <ngx_conf_file.h> 4 #include <ngx_conf_file.h>
5
6
7 extern ngx_module_t ngx_events_module;
8 extern ngx_module_t ngx_event_module;
5 9
6 10
7 extern ngx_module_t ngx_http_module; 11 extern ngx_module_t ngx_http_module;
8 extern ngx_module_t ngx_http_core_module; 12 extern ngx_module_t ngx_http_core_module;
9 13
14 extern ngx_module_t ngx_http_index_module; 18 extern ngx_module_t ngx_http_index_module;
15 extern ngx_module_t ngx_http_proxy_module; 19 extern ngx_module_t ngx_http_proxy_module;
16 20
17 21
18 ngx_module_t *ngx_modules[] = { 22 ngx_module_t *ngx_modules[] = {
23
24 /* events */
25
26 &ngx_events_module,
27 &ngx_event_module,
28
29 /* http */
19 30
20 &ngx_http_module, 31 &ngx_http_module,
21 32
22 &ngx_http_core_module, 33 &ngx_http_core_module,
23 &ngx_http_write_filter_module, 34 &ngx_http_write_filter_module,