├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── config ├── filter ├── config └── ngx_http_zstd_filter_module.c ├── static ├── config └── ngx_http_zstd_static_module.c ├── t ├── 00-filter.t ├── 01-static.t └── suite │ ├── test │ └── test.zst └── valgrind.suppress /.gitattributes: -------------------------------------------------------------------------------- 1 | *.t linguist-language=Text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/config -------------------------------------------------------------------------------- /filter/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/filter/config -------------------------------------------------------------------------------- /filter/ngx_http_zstd_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/filter/ngx_http_zstd_filter_module.c -------------------------------------------------------------------------------- /static/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/static/config -------------------------------------------------------------------------------- /static/ngx_http_zstd_static_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/static/ngx_http_zstd_static_module.c -------------------------------------------------------------------------------- /t/00-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/t/00-filter.t -------------------------------------------------------------------------------- /t/01-static.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/t/01-static.t -------------------------------------------------------------------------------- /t/suite/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/t/suite/test -------------------------------------------------------------------------------- /t/suite/test.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/t/suite/test.zst -------------------------------------------------------------------------------- /valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokers/zstd-nginx-module/HEAD/valgrind.suppress --------------------------------------------------------------------------------