├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── config ├── ngx_memory_leak_killer.c └── testconf └── nginx.conf /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/config -------------------------------------------------------------------------------- /ngx_memory_leak_killer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/ngx_memory_leak_killer.c -------------------------------------------------------------------------------- /testconf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chikuwait/ngx_memory_leak_killer/HEAD/testconf/nginx.conf --------------------------------------------------------------------------------