Skip to content

Instantly share code, notes, and snippets.

View nutrun's full-sized avatar

George Malamidis nutrun

View GitHub Profile
@nutrun
nutrun / ngx_http_hello_world_module.c
Created October 6, 2012 11:57
nginx hello world
#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,