├── .gitignore ├── COPYING ├── README.md ├── config ├── ngx_http_hello_world_module.c └── t └── 00-hello.t /.gitignore: -------------------------------------------------------------------------------- 1 | t/servroot 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/ngx_http_hello_world/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/ngx_http_hello_world/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/ngx_http_hello_world/HEAD/config -------------------------------------------------------------------------------- /ngx_http_hello_world_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/ngx_http_hello_world/HEAD/ngx_http_hello_world_module.c -------------------------------------------------------------------------------- /t/00-hello.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/ngx_http_hello_world/HEAD/t/00-hello.t --------------------------------------------------------------------------------