├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── config ├── config.make └── ngx_http_brotli_filter_module.c /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/config -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/config.make -------------------------------------------------------------------------------- /ngx_http_brotli_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/ngx_brotli_module/HEAD/ngx_http_brotli_filter_module.c --------------------------------------------------------------------------------