Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/cloudflare/ngx_brotli_module

Brotli module for NGINX, including the encoder
https://github.com/cloudflare/ngx_brotli_module

Last synced: 3 months ago
JSON representation

Brotli module for NGINX, including the encoder

Lists

README

        

# ngx_brotli_module

This NGINX module enables the brotli compression for Accept-Encoding:"br".

Brotli is a recent compression format developed by Google.

https://tools.ietf.org/html/rfc7932

Use the "--add-module=" when configuring NGINX to enable the module.

Config options:

brotli on/off - enable the module. When brotli is enabled, it takes
precendence over gzip if Accept-Encoding has both gzip and
brotli.
brotli_comp_level num - the compression level used 1-11
brotli_min_length num - the minimal size of the resource to be compressed.
Brotli will compress only resources larger than this
value. If it is smaller it will let gzip to compress.

Currently tested only on Linux.