/* * Copyright (C) Igor Sysoev * Copyright (C) Nginx, Inc. */ #include <ngx_config.h> #include <ngx_core.h> #include <ngx_http.h> static ngx_int_t ngx_http_static_handler(ngx_http_request_t *r); static ngx_int_t ngx_http_static_init(ngx_conf_t *cf); static ngx_http_module_t ngx_http_static_module_ctx = …; ngx_module_t ngx_http_static_module = …; static ngx_int_t ngx_http_static_handler(ngx_http_request_t *r) { … } static ngx_int_t ngx_http_static_init(ngx_conf_t *cf) { … }