# include <ngx_config.h> # include <ngx_core.h> # include <ngx_http.h> static char *ngx_http_hello_world(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); static ngx_command_t ngx_http_hello_world_module_commands[] = { { ngx_string("ngx_hello_world"), NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS, ngx_http_hello_world, 0, 0, NULL, }, ngx_null_command, }; static ngx_http_module_t ngx_http_hello_world_module_ctx