This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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_commands[] = { | |
{ ngx_string("hello_world"), | |
NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS, |
OlderNewer