diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-19 16:39:14 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-19 16:39:14 +0000 |
commit | a98301160de4c12f455cca8f78509f2e04626c0b (patch) | |
tree | cdf14046298d40ca8398925603fb4011360b187a /src/http/modules/ngx_http_index_handler.c | |
parent | bb4ec5c1721defd7b10f83ace51bddb71726dd1a (diff) | |
download | nginx-a98301160de4c12f455cca8f78509f2e04626c0b.tar.gz nginx-a98301160de4c12f455cca8f78509f2e04626c0b.zip |
nginx-0.0.1-2003-05-19-20:39:14 import
Diffstat (limited to 'src/http/modules/ngx_http_index_handler.c')
-rw-r--r-- | src/http/modules/ngx_http_index_handler.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/http/modules/ngx_http_index_handler.c b/src/http/modules/ngx_http_index_handler.c index 2a236ee6d..49a4e0ab3 100644 --- a/src/http/modules/ngx_http_index_handler.c +++ b/src/http/modules/ngx_http_index_handler.c @@ -38,11 +38,14 @@ static ngx_command_t ngx_http_index_commands[] = { ngx_http_module_t ngx_http_index_module_ctx = { NGX_HTTP_MODULE, - NULL, /* create server config */ - NULL, /* init server config */ + NULL, /* create main configuration */ + NULL, /* init main configuration */ - ngx_http_index_create_conf, /* create location config */ - ngx_http_index_merge_conf /* merge location config */ + NULL, /* create server configuration */ + NULL, /* merge server configuration */ + + ngx_http_index_create_conf, /* create location configration */ + ngx_http_index_merge_conf /* merge location configration */ }; |