├── .gitignore ├── CHANGES ├── LICENSE ├── README ├── config ├── src ├── ngx_coolkit_handlers.c ├── ngx_coolkit_handlers.h ├── ngx_coolkit_module.c ├── ngx_coolkit_module.h ├── ngx_coolkit_variables.c └── ngx_coolkit_variables.h ├── t ├── location.t ├── override_method.t └── remote_passwd.t └── valgrind.suppress /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/README -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/config -------------------------------------------------------------------------------- /src/ngx_coolkit_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/src/ngx_coolkit_handlers.c -------------------------------------------------------------------------------- /src/ngx_coolkit_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/src/ngx_coolkit_handlers.h -------------------------------------------------------------------------------- /src/ngx_coolkit_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/src/ngx_coolkit_module.c -------------------------------------------------------------------------------- /src/ngx_coolkit_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/src/ngx_coolkit_module.h -------------------------------------------------------------------------------- /src/ngx_coolkit_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/src/ngx_coolkit_variables.c -------------------------------------------------------------------------------- /src/ngx_coolkit_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/src/ngx_coolkit_variables.h -------------------------------------------------------------------------------- /t/location.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/t/location.t -------------------------------------------------------------------------------- /t/override_method.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/t/override_method.t -------------------------------------------------------------------------------- /t/remote_passwd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/t/remote_passwd.t -------------------------------------------------------------------------------- /valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FRiCKLE/ngx_coolkit/HEAD/valgrind.suppress --------------------------------------------------------------------------------