view src/http/modules/ngx_http_index_handler.h @ 96:a23d010f356d

nginx-0.0.1-2003-05-27-16:18:54 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 27 May 2003 12:18:54 +0000
parents d81326c3b21b
children
line wrap: on
line source

#ifndef _NGX_HTTP_INDEX_HANDLER_H_INCLUDED_
#define _NGX_HTTP_INDEX_HANDLER_H_INCLUDED_


#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>


#define NGX_HTTP_DEFAULT_INDEX   "index.html"


typedef struct {
    ngx_array_t  indices;
    size_t       max_index_len;
} ngx_http_index_conf_t;


extern ngx_module_t  ngx_http_index_module;


#endif /* _NGX_HTTP_INDEX_HANDLER_H_INCLUDED_ */