#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
ngx_http_try_file_t;
ngx_http_try_files_loc_conf_t;
static ngx_int_t ngx_http_try_files_handler(ngx_http_request_t *r);
static char *ngx_http_try_files(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static void *ngx_http_try_files_create_loc_conf(ngx_conf_t *cf);
static ngx_int_t ngx_http_try_files_init(ngx_conf_t *cf);
static ngx_command_t ngx_http_try_files_commands[] = …;
static ngx_http_module_t ngx_http_try_files_module_ctx = …;
ngx_module_t ngx_http_try_files_module = …;
static ngx_int_t
ngx_http_try_files_handler(ngx_http_request_t *r)
{ … }
static char *
ngx_http_try_files(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{ … }
static void *
ngx_http_try_files_create_loc_conf(ngx_conf_t *cf)
{ … }
static ngx_int_t
ngx_http_try_files_init(ngx_conf_t *cf)
{ … }