diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-16 15:27:48 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-16 15:27:48 +0000 |
commit | bb4ec5c1721defd7b10f83ace51bddb71726dd1a (patch) | |
tree | 408036d662e5e14a56e8ccd42e2d20a73a0b2cd0 /src/core/ngx_modules.c | |
parent | 6ddfbf06625eca15ddf24ac95b755cdc9db32bfa (diff) | |
download | nginx-bb4ec5c1721defd7b10f83ace51bddb71726dd1a.tar.gz nginx-bb4ec5c1721defd7b10f83ace51bddb71726dd1a.zip |
nginx-0.0.1-2003-05-16-19:27:48 import
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r-- | src/core/ngx_modules.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c index a6b56c586..273c5550e 100644 --- a/src/core/ngx_modules.c +++ b/src/core/ngx_modules.c @@ -4,6 +4,10 @@ #include <ngx_conf_file.h> +extern ngx_module_t ngx_events_module; +extern ngx_module_t ngx_event_module; + + extern ngx_module_t ngx_http_module; extern ngx_module_t ngx_http_core_module; @@ -17,6 +21,13 @@ extern ngx_module_t ngx_http_proxy_module; ngx_module_t *ngx_modules[] = { + /* events */ + + &ngx_events_module, + &ngx_event_module, + + /* http */ + &ngx_http_module, &ngx_http_core_module, |